datetime_picker_input 4.0.0 → 4.17.37
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +2 -0
- data/CONTRIBUTING.md +7 -0
- data/Gemfile +1 -0
- data/{LICENSE → LICENSE.md} +0 -0
- data/README.md +57 -9
- data/app/inputs/date_time_picker_input.rb +7 -4
- data/datetime_picker_input.gemspec +2 -2
- data/lib/datetime_picker_input/version.rb +1 -1
- data/lib/generators/templates/inputs/date_time_picker_input.rb +3 -3
- data/spec/app/inputs/date_time_picker_input_spec.rb +36 -0
- data/spec/dummy/app/assets/stylesheets/application.scss +4 -0
- data/spec/dummy/app/controllers/appointments_controller.rb +30 -2
- data/spec/dummy/app/helpers/application_helper.rb +3 -0
- data/spec/dummy/app/views/appointments/_form.html.slim +6 -0
- data/spec/dummy/app/views/appointments/edit.html.slim +4 -0
- data/spec/dummy/app/views/appointments/index.html.slim +1 -1
- data/spec/dummy/app/views/appointments/new.html.slim +1 -3
- data/spec/dummy/config/routes.rb +1 -1
- data/spec/dummy/log/development.log +261 -3344
- data/spec/dummy/log/test.log +7259 -1819
- data/spec/feature_helper.rb +1 -0
- data/spec/features/datetime_picker_input_spec.rb +90 -7
- metadata +17 -14
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 289b0062c14128710d88cb7741a8110f8d6d9887
|
4
|
+
data.tar.gz: 39e89ce2ac872c41928e2af78d729927f54988b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0975ae4f17a08cb275a587db967ca8dbf47f195c113c7d290ca76ffd08220b8c97688a7d8429d111551ec2fb5beb7c35969841f20e79582d1eb0e043e066427c
|
7
|
+
data.tar.gz: dc8f760089ca094ad633ecafe33d366ddf5e0428272fb1a2700dd1560cfb89b6fb816d021a9f831e3dfa8d1864129610303637e681fc1be3fe0891bb313364ca
|
data/.gitignore
CHANGED
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
# Contributing
|
2
|
+
|
3
|
+
1. Fork it ( https://github.com/jollygoodcode/datetime_picker_input/fork )
|
4
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
5
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
6
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
7
|
+
5. Create a new Pull Request
|
data/Gemfile
CHANGED
data/{LICENSE → LICENSE.md}
RENAMED
File without changes
|
data/README.md
CHANGED
@@ -47,6 +47,42 @@ Demo app is available at [http://datetime-picker-input.herokuapp.com](http://dat
|
|
47
47
|
f.input :when, as: :date_time_picker
|
48
48
|
```
|
49
49
|
|
50
|
+
By default (without config), when you select a value from the DateTime picker, the format of the value
|
51
|
+
defaults to `YYYY-MM-DD HH:mm:ss Z`, i.e. `2015-10-25 14:33:02 +0800`.
|
52
|
+
|
53
|
+
This ensures that, out of the box, this value (with Time Zone) would be passed on to the Rails backend
|
54
|
+
and be saved as a DateTime value with the *correct Time Zone*.
|
55
|
+
|
56
|
+
Beneath the hood, Moment.js is used to parse and format value on the DateTime picker.
|
57
|
+
For other valid formats, please refer to [their Docs](http://momentjs.com/docs/#/displaying/).
|
58
|
+
|
59
|
+
#### Warning!
|
60
|
+
|
61
|
+
However, if you do change the format (like in the Customized Options example),
|
62
|
+
then you will need to implement your attribute setter and getter in Rails backend
|
63
|
+
to save and display the value correctly in your desired Time Zone.
|
64
|
+
|
65
|
+
One way to do this is to implement an `around_filter` on your controllers like so:
|
66
|
+
|
67
|
+
```ruby
|
68
|
+
class AppointmentsController < ApplicationController
|
69
|
+
around_action :use_current_timezone
|
70
|
+
|
71
|
+
# .. your controller code
|
72
|
+
|
73
|
+
def use_current_timezone(&block)
|
74
|
+
Time.use_zone(current_user.timezone, &block)
|
75
|
+
end
|
76
|
+
end
|
77
|
+
```
|
78
|
+
|
79
|
+
This uses your `user`'s Time Zone, so that the DateTime gets stored and will be displayed as expected (from the user's perspective).
|
80
|
+
|
81
|
+
We are also assuming that, in this example, the `current_user` has set a custom Time Zone,
|
82
|
+
otherwise, you should just use the gem's default.
|
83
|
+
|
84
|
+
Times are hard..
|
85
|
+
|
50
86
|
### Customized Options
|
51
87
|
|
52
88
|
```slim
|
@@ -70,6 +106,17 @@ For example:
|
|
70
106
|
- `dayViewHeaderFormat` to `date_day_view_header_format`
|
71
107
|
- `minDate` to `date_min_date`
|
72
108
|
|
109
|
+
### Date Picker Only
|
110
|
+
|
111
|
+
```slim
|
112
|
+
= f.input :when, as: :date_time_picker, input_html: \
|
113
|
+
{ data: \
|
114
|
+
{ \
|
115
|
+
date_format: "YYYY-MM-DD", \
|
116
|
+
} \
|
117
|
+
}
|
118
|
+
```
|
119
|
+
|
73
120
|
## Customization
|
74
121
|
|
75
122
|
To [customize the input field](https://github.com/plataformatec/simple_form/wiki/Adding-custom-input-components), you can copy `datetime_picker_input.rb` from the gem to your app by using the generator included in `datetime_picker_input`.
|
@@ -97,18 +144,19 @@ Any bug fix release of this gem will have a 4th decimal added, e.g. 4.0.0.1, 4.0
|
|
97
144
|
|
98
145
|
## Contributing
|
99
146
|
|
100
|
-
|
101
|
-
2. Create your feature branch (`git checkout -b my-new-feature`)
|
102
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
103
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
104
|
-
5. Create a new Pull Request
|
147
|
+
Please see the [CONTRIBUTING.md](/CONTRIBUTING.md) file.
|
105
148
|
|
106
149
|
## Credits
|
107
150
|
|
108
|
-
A huge THANK YOU to all our [contributors]
|
109
|
-
|
110
|
-
This project is maintained by [Jolly Good Code](http://www.jollygoodcode.com).
|
151
|
+
A huge THANK YOU to all our [contributors](https://github.com/jollygoodcode/datetime_picker_input/graphs/contributors)! :heart:
|
111
152
|
|
112
153
|
## License
|
113
154
|
|
114
|
-
|
155
|
+
Please see the [LICENSE.md](/LICENSE.md) file.
|
156
|
+
|
157
|
+
## Maintained by Jolly Good Code
|
158
|
+
|
159
|
+
[![Jolly Good Code](https://cloud.githubusercontent.com/assets/1000669/9362336/72f9c406-46d2-11e5-94de-5060e83fcf83.jpg)](http://www.jollygoodcode.com)
|
160
|
+
|
161
|
+
We specialise in Agile practices and Ruby, and we love contributing to open source.
|
162
|
+
[Speak to us](http://www.jollygoodcode.com/#get-in-touch) about your next big idea, or [check out our projects](http://www.jollygoodcode.com/open-source).
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# = f.input :when, as: :date_time_picker, input_html: \
|
5
5
|
# { data: \
|
6
6
|
# { \
|
7
|
-
# date_format: "YYYY-MM-DD hh:mm A", \
|
7
|
+
# date_format: "YYYY-MM-DD hh:mm A Z", \
|
8
8
|
# date_day_view_header_format: 'MMM YYYY', \
|
9
9
|
# date_side_by_side: true, \
|
10
10
|
# date_min_date: Time.current.strftime('%Y-%m-%d') \
|
@@ -20,7 +20,10 @@ class DateTimePickerInput < SimpleForm::Inputs::StringInput
|
|
20
20
|
input_html_options[:data] ||= {}
|
21
21
|
input_html_options[:data].reverse_merge!(date_format: picker_pattern)
|
22
22
|
|
23
|
-
input_html_options[:
|
23
|
+
input_html_options[:data][:date_extra_formats] ||= []
|
24
|
+
input_html_options[:data][:date_extra_formats] << picker_pattern
|
25
|
+
|
26
|
+
input_html_options[:value] ||= I18n.localize(attr_value.utc, format: display_pattern) if attr_value.present?
|
24
27
|
|
25
28
|
template.content_tag :div, class: "input-group date datetime_picker" do
|
26
29
|
input = super(wrapper_options)
|
@@ -40,11 +43,11 @@ class DateTimePickerInput < SimpleForm::Inputs::StringInput
|
|
40
43
|
private
|
41
44
|
|
42
45
|
def display_pattern
|
43
|
-
|
46
|
+
"%Y-%m-%d %H:%M:%S %z"
|
44
47
|
end
|
45
48
|
|
46
49
|
def picker_pattern
|
47
|
-
|
50
|
+
"YYYY-MM-DD HH:mm:ss ZZ"
|
48
51
|
end
|
49
52
|
|
50
53
|
def attr_value
|
@@ -18,6 +18,6 @@ Gem::Specification.new do |spec|
|
|
18
18
|
spec.test_files = Dir["spec/**/*"]
|
19
19
|
spec.require_paths = %w(lib)
|
20
20
|
|
21
|
-
spec.add_runtime_dependency "bootstrap3-datetimepicker-rails", "~> 4.
|
22
|
-
spec.add_runtime_dependency "momentjs-rails", "
|
21
|
+
spec.add_runtime_dependency "bootstrap3-datetimepicker-rails", "~> 4.17.37"
|
22
|
+
spec.add_runtime_dependency "momentjs-rails", "~> 2.10.6"
|
23
23
|
end
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# = f.input :when, as: :date_time_picker, input_html: \
|
5
5
|
# { data: \
|
6
6
|
# { \
|
7
|
-
# date_format: "YYYY-MM-DD hh:mm A", \
|
7
|
+
# date_format: "YYYY-MM-DD hh:mm A Z", \
|
8
8
|
# date_day_view_header_format: 'MMM YYYY', \
|
9
9
|
# date_side_by_side: true, \
|
10
10
|
# date_min_date: Time.current.strftime('%Y-%m-%d') \
|
@@ -40,11 +40,11 @@ class DateTimePickerInput < SimpleForm::Inputs::StringInput
|
|
40
40
|
private
|
41
41
|
|
42
42
|
def display_pattern
|
43
|
-
|
43
|
+
"%Y-%m-%d %H:%M:%S %z"
|
44
44
|
end
|
45
45
|
|
46
46
|
def picker_pattern
|
47
|
-
|
47
|
+
"YYYY-MM-DD HH:mm:ss ZZ"
|
48
48
|
end
|
49
49
|
|
50
50
|
def attr_value
|
@@ -0,0 +1,36 @@
|
|
1
|
+
require "rails_helper"
|
2
|
+
|
3
|
+
class Event
|
4
|
+
include ActiveModel::Model
|
5
|
+
|
6
|
+
attr_accessor :when
|
7
|
+
end
|
8
|
+
|
9
|
+
describe "DateTimePickerInput", type: :helper do
|
10
|
+
describe "#input" do
|
11
|
+
def input_for(object, attr_name, options={})
|
12
|
+
helper.simple_form_for object, url: '' do |f|
|
13
|
+
f.input attr_name, options
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
context "field without value" do
|
18
|
+
let(:obj) { Event.new }
|
19
|
+
|
20
|
+
it "includes default `date_extra_formats" do
|
21
|
+
output = input_for(obj, :when, as: :date_time_picker)
|
22
|
+
expect(output).to match /data-date-format=.*YYYY-MM-DD HH:mm:ss ZZ.*"/
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
context "field with value" do
|
27
|
+
let(:obj) { Event.new(when: time) }
|
28
|
+
let(:time) { Time.current }
|
29
|
+
|
30
|
+
it "includes formatted value" do
|
31
|
+
output = input_for(obj, :when, as: :date_time_picker)
|
32
|
+
expect(output).to match /value="#{Regexp.quote(time.utc.strftime("%Y-%m-%d %H:%M:%S %z"))}"/
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -1,4 +1,6 @@
|
|
1
1
|
class AppointmentsController < ApplicationController
|
2
|
+
around_action :use_current_timezone
|
3
|
+
|
2
4
|
def index
|
3
5
|
@appointments = Appointment.all
|
4
6
|
end
|
@@ -9,7 +11,33 @@ class AppointmentsController < ApplicationController
|
|
9
11
|
|
10
12
|
def create
|
11
13
|
@appointment = Appointment.new(params.require(:appointment).permit(:scheduled_at))
|
12
|
-
@appointment.save
|
13
|
-
|
14
|
+
if @appointment.save
|
15
|
+
redirect_to edit_appointment_path(@appointment), notice: 'Appointment was successfully created.'
|
16
|
+
else
|
17
|
+
render :new
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def edit
|
22
|
+
@appointment = Appointment.find(params[:id])
|
23
|
+
end
|
24
|
+
|
25
|
+
def update
|
26
|
+
@appointment = Appointment.find(params[:id])
|
27
|
+
if @appointment.update(params.require(:appointment).permit(:scheduled_at))
|
28
|
+
redirect_to edit_appointment_path(@appointment), notice: "Appointment was successfully updated."
|
29
|
+
else
|
30
|
+
render :edit
|
31
|
+
end
|
14
32
|
end
|
33
|
+
|
34
|
+
private
|
35
|
+
def use_current_timezone(&block)
|
36
|
+
Time.use_zone(current_timezone, &block)
|
37
|
+
end
|
38
|
+
|
39
|
+
def current_timezone
|
40
|
+
ENV.fetch('CURRENT_TIMEZONE') { 'UTC' }
|
41
|
+
end
|
42
|
+
|
15
43
|
end
|
@@ -0,0 +1,6 @@
|
|
1
|
+
= simple_form_for @appointment, html: { class: "form-horizontal" } do |f|
|
2
|
+
= f.input :scheduled_at, as: :date_time_picker, input_html: input_html_options
|
3
|
+
= f.submit
|
4
|
+
|
5
|
+
javascript:
|
6
|
+
$('form').after($('<pre style="margin-top:1em;"></pre>').text("value=" + $('#appointment_scheduled_at')[0].getAttribute('value')));
|
data/spec/dummy/config/routes.rb
CHANGED
@@ -1,3657 +1,574 @@
|
|
1
|
-
[1m[36m (1.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
3
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
5
|
-
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
6
|
-
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
7
|
-
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
8
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
9
|
-
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
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
|
-
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
17
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
18
|
-
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
19
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
20
|
-
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
21
|
-
[1m[36m (0.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
22
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
23
|
-
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
24
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
25
|
-
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
26
|
-
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
27
|
-
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
28
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
29
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
30
|
-
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
31
|
-
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
32
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
33
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
34
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
35
|
-
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
36
|
-
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
37
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
38
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
39
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
40
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
41
|
-
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
42
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
43
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
44
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
45
|
-
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
46
|
-
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
47
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
48
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
49
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
50
|
-
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
51
|
-
[1m[36m (0.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
52
|
-
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
53
|
-
[1m[36m (0.5ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
54
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
55
|
-
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
56
|
-
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
57
|
-
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
58
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
59
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
60
|
-
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
61
|
-
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
62
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
63
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
64
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
65
|
-
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
66
|
-
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
67
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
68
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
69
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
70
|
-
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
71
|
-
[1m[36m (0.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
72
|
-
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
73
|
-
[1m[36m (0.5ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
74
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
75
|
-
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
76
|
-
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
77
|
-
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
78
|
-
[1m[36m (0.5ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
79
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
80
|
-
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
81
|
-
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
82
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
83
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
84
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
85
|
-
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
86
|
-
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
87
|
-
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
88
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
89
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
90
|
-
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
91
|
-
[1m[36m (1.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
92
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
93
|
-
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
94
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
95
|
-
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
96
|
-
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
97
|
-
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
98
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
99
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
100
|
-
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
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
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
491
|
-
Migrating to CreateAppointments (20150224051923)
|
492
|
-
[1m[35m (0.1ms)[0m begin transaction
|
493
|
-
[1m[36m (0.4ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
494
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150224051923"]]
|
495
|
-
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
496
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
497
|
-
|
498
|
-
|
499
|
-
Started GET "/" for ::1 at 2015-02-24 13:21:30 +0800
|
500
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
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
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
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
|
-
[1m[35m (0.1ms)[0m begin transaction
|
651
|
-
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "appointments" ("scheduled_at") VALUES (?)[0m [["scheduled_at", "2015-02-24 05:22:00.000000"]]
|
652
|
-
[1m[35m (0.5ms)[0m 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
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
673
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "appointments" ("scheduled_at") VALUES (?) [["scheduled_at", "2015-02-24 05:23:00.000000"]]
|
674
|
-
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
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
|
-
[1m[35m (0.0ms)[0m begin transaction
|
791
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appointments" ("scheduled_at") VALUES (?)[0m [["scheduled_at", "2015-02-24 05:23:00.000000"]]
|
792
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
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
|
-
[1m[35mAppointment Load (0.4ms)[0m 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
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
984
|
-
Processing by AppointmentsController#index as HTML
|
985
|
-
[1m[35mAppointment Load (0.1ms)[0m 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
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1009
|
-
Processing by AppointmentsController#index as HTML
|
1010
|
-
[1m[35mAppointment Load (0.1ms)[0m 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
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
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
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
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
|
-
[1m[35mAppointment Load (0.1ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
1358
|
-
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
1359
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
1360
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1361
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1362
|
-
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
1363
|
-
[1m[36m (1.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
1364
|
-
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
1365
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
1366
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1367
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1368
|
-
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
1369
|
-
[1m[36m (1.2ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
1370
|
-
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
1371
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
1372
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1373
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1374
|
-
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
1375
|
-
[1m[36m (1.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
1376
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
1377
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
1378
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1379
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1380
|
-
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
1381
|
-
[1m[36m (1.1ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
1382
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
1383
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
1384
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1385
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1386
|
-
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
1387
|
-
[1m[36m (1.1ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
1388
|
-
[1m[35m (1.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
1389
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
1390
|
-
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1391
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1392
|
-
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
1393
|
-
[1m[36m (0.9ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
1394
|
-
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
1395
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
1396
|
-
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1397
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1398
|
-
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
1399
|
-
[1m[36m (1.1ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
1400
|
-
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
1401
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
1402
|
-
[1m[35m (1.3ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1403
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1404
|
-
[1m[35m (1.0ms)[0m 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
|
-
[1m[36m (1.1ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
1420
|
-
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
1421
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
1422
|
-
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1423
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1424
|
-
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
1425
|
-
[1m[36m (1.1ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
1426
|
-
[1m[35m (1.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
1427
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
1428
|
-
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1429
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1430
|
-
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
1431
|
-
[1m[36m (1.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
1432
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
1433
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
1434
|
-
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1435
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1436
|
-
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
1437
|
-
|
1438
|
-
|
1439
|
-
Started GET "/" for ::1 at 2015-02-24 13:46:27 +0800
|
1440
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1441
|
-
Processing by AppointmentsController#index as HTML
|
1442
|
-
[1m[35mAppointment Load (0.2ms)[0m 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
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1601
|
-
Processing by AppointmentsController#index as HTML
|
1602
|
-
[1m[35mAppointment Load (0.2ms)[0m 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
|
-
[1m[36mAppointment Load (0.1ms)[0m [1mSELECT "appointments".* FROM "appointments"[0m
|
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
|
-
[1m[36m (0.9ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
1805
|
-
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
1806
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
1807
|
-
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1808
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1809
|
-
[1m[35m (1.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
1810
|
-
[1m[36m (1.5ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
1811
|
-
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
1812
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
1813
|
-
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1814
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1815
|
-
[1m[35m (1.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
1816
|
-
[1m[36m (1.1ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
1817
|
-
[1m[35m (1.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
1818
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
1819
|
-
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1820
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1821
|
-
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
1822
|
-
[1m[36m (1.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
1823
|
-
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
1824
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
1825
|
-
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1826
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1827
|
-
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
1828
|
-
[1m[36m (1.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
1829
|
-
[1m[35m (1.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
1830
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
1831
|
-
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1832
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1833
|
-
[1m[35m (1.1ms)[0m 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
|
-
[1m[35mAppointment Load (0.1ms)[0m 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
1
|
|
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
2
|
|
3
|
+
Started GET "/" for ::1 at 2015-10-26 10:15:39 +0800
|
2155
4
|
|
2156
|
-
|
5
|
+
ActiveRecord::PendingMigrationError (
|
2157
6
|
|
2158
|
-
|
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
|
7
|
+
Migrations are pending. To resolve this issue, run:
|
2204
8
|
|
9
|
+
bin/rake db:migrate RAILS_ENV=development
|
2205
10
|
|
2206
|
-
|
2207
|
-
|
2208
|
-
|
2209
|
-
|
2210
|
-
|
2211
|
-
|
2212
|
-
|
2213
|
-
|
2214
|
-
|
2215
|
-
|
2216
|
-
|
2217
|
-
|
2218
|
-
|
2219
|
-
|
2220
|
-
|
2221
|
-
|
2222
|
-
|
2223
|
-
|
2224
|
-
|
2225
|
-
|
2226
|
-
|
2227
|
-
|
2228
|
-
|
2229
|
-
|
2230
|
-
|
2231
|
-
|
2232
|
-
|
2233
|
-
|
2234
|
-
|
2235
|
-
|
2236
|
-
|
2237
|
-
|
2238
|
-
|
2239
|
-
|
2240
|
-
|
2241
|
-
|
2242
|
-
|
2243
|
-
|
2244
|
-
|
2245
|
-
|
2246
|
-
|
2247
|
-
|
2248
|
-
|
2249
|
-
|
2250
|
-
|
2251
|
-
|
2252
|
-
|
2253
|
-
|
2254
|
-
|
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
|
11
|
+
):
|
12
|
+
activerecord (4.2.4) lib/active_record/migration.rb:392:in `check_pending!'
|
13
|
+
activerecord (4.2.4) lib/active_record/migration.rb:373:in `call'
|
14
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
15
|
+
activesupport (4.2.4) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
|
16
|
+
activesupport (4.2.4) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
|
17
|
+
activesupport (4.2.4) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
18
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
19
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
20
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
21
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
22
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
23
|
+
railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
|
24
|
+
railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
|
25
|
+
activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
26
|
+
activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
|
27
|
+
activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
|
28
|
+
railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
|
29
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
30
|
+
rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
|
31
|
+
rack (1.6.4) lib/rack/runtime.rb:18:in `call'
|
32
|
+
activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
33
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
34
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
|
35
|
+
rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
|
36
|
+
railties (4.2.4) lib/rails/engine.rb:518:in `call'
|
37
|
+
railties (4.2.4) lib/rails/application.rb:165:in `call'
|
38
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
39
|
+
rack (1.6.4) lib/rack/content_length.rb:15:in `call'
|
40
|
+
rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
|
41
|
+
/Users/winston/.rvm/rubies/ruby-2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
42
|
+
/Users/winston/.rvm/rubies/ruby-2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
43
|
+
/Users/winston/.rvm/rubies/ruby-2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
44
|
+
|
45
|
+
|
46
|
+
Rendered /Users/winston/workspace/datetime_picker_input/vendor/bundle/ruby/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.8ms)
|
47
|
+
Rendered /Users/winston/workspace/datetime_picker_input/vendor/bundle/ruby/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
|
48
|
+
Rendered /Users/winston/workspace/datetime_picker_input/vendor/bundle/ruby/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
|
49
|
+
Rendered /Users/winston/workspace/datetime_picker_input/vendor/bundle/ruby/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (52.4ms)
|
50
|
+
[1m[36m (9.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
51
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
52
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
53
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
54
|
+
Migrating to CreateAppointments (20150224051923)
|
55
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime)
|
57
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150224051923"]]
|
58
|
+
[1m[35m (0.7ms)[0m commit transaction
|
59
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2308
60
|
|
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
61
|
|
62
|
+
Started GET "/" for ::1 at 2015-10-26 10:15:55 +0800
|
63
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
64
|
+
Processing by AppointmentsController#index as HTML
|
65
|
+
[1m[35mAppointment Load (0.1ms)[0m SELECT "appointments".* FROM "appointments"
|
66
|
+
Rendered appointments/index.html.slim within layouts/application (21.1ms)
|
67
|
+
Completed 200 OK in 3697ms (Views: 3688.2ms | ActiveRecord: 0.2ms)
|
2334
68
|
|
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
69
|
|
70
|
+
Started GET "/assets/application.self-29525f85b8d205357a5e578fc0071fdfb2ca6cae6561c63722753053f9eb7d27.css?body=1" for ::1 at 2015-10-26 10:15:59 +0800
|
2341
71
|
|
2342
|
-
Started GET "/assets/basement-f3ac7004e6f23cf6b521d5aec0c1ca3f.js?body=1" for 127.0.0.1 at 2015-02-24 14:36:55 +0800
|
2343
72
|
|
2344
|
-
|
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)
|
73
|
+
Started GET "/assets/jquery.self-a714331225dda820228db323939889f149aec0127aeb06255646b616ba1ca419.js?body=1" for ::1 at 2015-10-26 10:15:59 +0800
|
2390
74
|
|
2391
75
|
|
2392
|
-
Started GET "/assets/
|
76
|
+
Started GET "/assets/jquery_ujs.self-d456baa54c1fa6be2ec3711f0a72ddf7a5b2f34a6b4f515f33767d6207b7d4b3.js?body=1" for ::1 at 2015-10-26 10:15:59 +0800
|
2393
77
|
|
2394
78
|
|
2395
|
-
Started GET "/assets/
|
79
|
+
Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2015-10-26 10:15:59 +0800
|
2396
80
|
|
2397
81
|
|
2398
|
-
Started GET "/assets/bootstrap/
|
82
|
+
Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-10-26 10:15:59 +0800
|
2399
83
|
|
2400
84
|
|
2401
|
-
Started GET "/assets/
|
85
|
+
Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-10-26 10:15:59 +0800
|
2402
86
|
|
2403
87
|
|
2404
|
-
Started GET "/assets/
|
88
|
+
Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-10-26 10:15:59 +0800
|
2405
89
|
|
2406
90
|
|
2407
|
-
Started GET "/assets/bootstrap/
|
91
|
+
Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-10-26 10:15:59 +0800
|
2408
92
|
|
2409
93
|
|
2410
|
-
Started GET "/assets/bootstrap/
|
94
|
+
Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-10-26 10:15:59 +0800
|
2411
95
|
|
2412
96
|
|
2413
|
-
Started GET "/assets/bootstrap/
|
97
|
+
Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-10-26 10:15:59 +0800
|
2414
98
|
|
2415
99
|
|
2416
|
-
Started GET "/assets/bootstrap/
|
100
|
+
Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-10-26 10:15:59 +0800
|
2417
101
|
|
2418
102
|
|
2419
|
-
Started GET "/assets/bootstrap/
|
103
|
+
Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-10-26 10:15:59 +0800
|
2420
104
|
|
2421
105
|
|
2422
|
-
Started GET "/assets/bootstrap/
|
106
|
+
Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-10-26 10:15:59 +0800
|
2423
107
|
|
2424
108
|
|
2425
|
-
Started GET "/assets/bootstrap/
|
109
|
+
Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-10-26 10:15:59 +0800
|
2426
110
|
|
2427
111
|
|
2428
|
-
Started GET "/assets/bootstrap/
|
112
|
+
Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-10-26 10:15:59 +0800
|
2429
113
|
|
2430
114
|
|
2431
|
-
Started GET "/assets/bootstrap/
|
115
|
+
Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-10-26 10:15:59 +0800
|
2432
116
|
|
2433
117
|
|
2434
|
-
Started GET "/assets/bootstrap
|
118
|
+
Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-10-26 10:15:59 +0800
|
2435
119
|
|
2436
120
|
|
2437
|
-
Started GET "/assets/
|
121
|
+
Started GET "/assets/moment.self-9e3cbea792908410da80685bcee3695e54b449d063e5dadb3b6c05e038b46444.js?body=1" for ::1 at 2015-10-26 10:15:59 +0800
|
2438
122
|
|
2439
123
|
|
2440
|
-
Started GET "/assets/bootstrap-
|
124
|
+
Started GET "/assets/bootstrap-datetimepicker.self-f4c780e77f9e34c90cc43fc2a2bc2d2f11d5b54470904990480fc9cb434d918c.js?body=1" for ::1 at 2015-10-26 10:15:59 +0800
|
2441
125
|
|
2442
126
|
|
2443
|
-
Started GET "/assets/
|
127
|
+
Started GET "/assets/datetime_picker_input.self-5d80b5fca9c88e2721fa66247e6edc0a92d2d6174fe92e2eba3a29e72aa50eaa.js?body=1" for ::1 at 2015-10-26 10:15:59 +0800
|
2444
128
|
|
2445
129
|
|
2446
|
-
Started GET "/assets/
|
130
|
+
Started GET "/assets/application.self-d088784b7ecb87f1ea17e6f982fa968ffefcc07b79de6ecc548fc00242868da6.js?body=1" for ::1 at 2015-10-26 10:15:59 +0800
|
2447
131
|
|
2448
132
|
|
2449
|
-
Started GET "/appointments/new" for ::1 at 2015-
|
133
|
+
Started GET "/appointments/new" for ::1 at 2015-10-26 10:16:01 +0800
|
2450
134
|
Processing by AppointmentsController#new as HTML
|
2451
|
-
Rendered appointments/
|
2452
|
-
|
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
|
135
|
+
Rendered appointments/_form.html.slim (65.6ms)
|
136
|
+
Rendered appointments/new.html.slim within layouts/application (72.4ms)
|
137
|
+
Completed 200 OK in 162ms (Views: 159.9ms | ActiveRecord: 0.2ms)
|
2462
138
|
|
2463
139
|
|
2464
|
-
Started GET "/assets/bootstrap/
|
140
|
+
Started GET "/assets/bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2" for ::1 at 2015-10-26 10:16:02 +0800
|
2465
141
|
|
2466
142
|
|
2467
|
-
Started
|
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
|
143
|
+
Started POST "/appointments" for ::1 at 2015-10-26 10:16:18 +0800
|
2513
144
|
Processing by AppointmentsController#create as HTML
|
2514
|
-
Parameters: {"utf8"=>"✓", "authenticity_token"=>"
|
145
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"zlRdBrLiwPNyaWvdCvd/4cMMWrMfdTCppXNqMf2Zzr9UyeTneIU+14cgvxmDuYWdVBA8MfR/0MjTTXEgxtoevQ==", "appointment"=>{"scheduled_at"=>"2015-10-28 00:00:00 +0800"}, "commit"=>"Create Appointment"}
|
2515
146
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2516
|
-
[1m[35mSQL (0.
|
2517
|
-
[1m[36m (
|
147
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "appointments" ("scheduled_at") VALUES (?) [["scheduled_at", "2015-10-27 16:00:00.000000"]]
|
148
|
+
[1m[36m (2.4ms)[0m [1mcommit transaction[0m
|
2518
149
|
Redirected to http://localhost:3000/
|
2519
|
-
Completed 302 Found in 8ms (ActiveRecord:
|
150
|
+
Completed 302 Found in 8ms (ActiveRecord: 3.0ms)
|
2520
151
|
|
2521
152
|
|
2522
|
-
Started GET "/" for ::1 at 2015-
|
153
|
+
Started GET "/" for ::1 at 2015-10-26 10:16:18 +0800
|
2523
154
|
Processing by AppointmentsController#index as HTML
|
2524
155
|
[1m[35mAppointment Load (0.1ms)[0m SELECT "appointments".* FROM "appointments"
|
2525
|
-
Rendered appointments/index.slim within layouts/application (1.
|
2526
|
-
Completed 200 OK in
|
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
|
156
|
+
Rendered appointments/index.html.slim within layouts/application (1.1ms)
|
157
|
+
Completed 200 OK in 99ms (Views: 98.6ms | ActiveRecord: 0.1ms)
|
2578
158
|
|
2579
159
|
|
2580
|
-
Started GET "/
|
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
|
160
|
+
Started GET "/appointments/new" for ::1 at 2015-10-26 10:16:31 +0800
|
2587
161
|
Processing by AppointmentsController#new as HTML
|
2588
|
-
Rendered appointments/
|
2589
|
-
|
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
|
162
|
+
Rendered appointments/_form.html.slim (2.5ms)
|
163
|
+
Rendered appointments/new.html.slim within layouts/application (3.9ms)
|
164
|
+
Completed 200 OK in 96ms (Views: 95.6ms | ActiveRecord: 0.0ms)
|
2632
165
|
|
2633
166
|
|
2634
|
-
Started GET "/
|
167
|
+
Started GET "/appointments/1/edit" for ::1 at 2015-10-26 10:16:34 +0800
|
168
|
+
Processing by AppointmentsController#edit as HTML
|
169
|
+
Parameters: {"id"=>"1"}
|
170
|
+
[1m[36mAppointment Load (0.2ms)[0m [1mSELECT "appointments".* FROM "appointments" WHERE "appointments"."id" = ? LIMIT 1[0m [["id", 1]]
|
171
|
+
Rendered appointments/_form.html.slim (4.6ms)
|
172
|
+
Rendered appointments/edit.html.slim within layouts/application (8.6ms)
|
173
|
+
Completed 200 OK in 103ms (Views: 95.3ms | ActiveRecord: 0.2ms)
|
2635
174
|
|
2636
175
|
|
2637
|
-
Started GET "/
|
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
|
176
|
+
Started GET "/" for ::1 at 2015-10-26 10:16:41 +0800
|
2659
177
|
Processing by AppointmentsController#index as HTML
|
2660
|
-
[1m[
|
2661
|
-
Rendered appointments/index.slim within layouts/application (
|
2662
|
-
Completed 200 OK in
|
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
|
-
|
178
|
+
[1m[35mAppointment Load (0.1ms)[0m SELECT "appointments".* FROM "appointments"
|
179
|
+
Rendered appointments/index.html.slim within layouts/application (5.7ms)
|
180
|
+
Completed 200 OK in 103ms (Views: 102.1ms | ActiveRecord: 0.1ms)
|
2700
181
|
|
2701
|
-
Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for ::1 at 2015-02-24 14:40:00 +0800
|
2702
182
|
|
183
|
+
Started GET "/" for ::1 at 2015-10-26 10:18:48 +0800
|
2703
184
|
|
2704
|
-
|
185
|
+
SyntaxError (/Users/winston/workspace/datetime_picker_input/spec/dummy/app/controllers/appointments_controller.rb:31: syntax error, unexpected keyword_end, expecting end-of-input):
|
186
|
+
app/controllers/appointments_controller.rb:31: syntax error, unexpected keyword_end, expecting end-of-input
|
2705
187
|
|
2706
188
|
|
2707
|
-
|
189
|
+
Rendered /Users/winston/workspace/datetime_picker_input/vendor/bundle/ruby/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.9ms)
|
190
|
+
Rendered /Users/winston/workspace/datetime_picker_input/vendor/bundle/ruby/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
|
191
|
+
Rendered /Users/winston/workspace/datetime_picker_input/vendor/bundle/ruby/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
|
192
|
+
Rendered /Users/winston/workspace/datetime_picker_input/vendor/bundle/ruby/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (48.5ms)
|
2708
193
|
|
2709
194
|
|
2710
|
-
Started GET "/
|
195
|
+
Started GET "/" for ::1 at 2015-10-26 10:18:56 +0800
|
196
|
+
Processing by AppointmentsController#index as HTML
|
197
|
+
[1m[36mAppointment Load (0.3ms)[0m [1mSELECT "appointments".* FROM "appointments"[0m
|
198
|
+
Rendered appointments/index.html.slim within layouts/application (2.4ms)
|
199
|
+
Completed 200 OK in 97ms (Views: 94.3ms | ActiveRecord: 0.5ms)
|
2711
200
|
|
2712
201
|
|
2713
|
-
Started GET "/
|
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)
|
202
|
+
Started GET "/assets/application.self-29525f85b8d205357a5e578fc0071fdfb2ca6cae6561c63722753053f9eb7d27.css?body=1" for ::1 at 2015-10-26 10:18:56 +0800
|
2717
203
|
|
2718
204
|
|
2719
|
-
Started GET "/assets/
|
205
|
+
Started GET "/assets/jquery.self-a714331225dda820228db323939889f149aec0127aeb06255646b616ba1ca419.js?body=1" for ::1 at 2015-10-26 10:18:56 +0800
|
2720
206
|
|
2721
207
|
|
2722
|
-
Started GET "/
|
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
|
-
[1m[36m (0.7ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
2727
|
-
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
2728
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
2729
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2730
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2731
|
-
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
2732
|
-
[1m[36m (1.2ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
2733
|
-
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
2734
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
2735
|
-
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2736
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2737
|
-
[1m[35m (1.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
2738
|
-
[1m[36m (1.2ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
2739
|
-
[1m[35m (0.6ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
2740
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
2741
|
-
[1m[35m (0.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2742
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2743
|
-
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
2744
|
-
[1m[36m (1.8ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
2745
|
-
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
2746
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
2747
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2748
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2749
|
-
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
2750
|
-
[1m[36m (1.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
2751
|
-
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
2752
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
2753
|
-
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2754
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2755
|
-
[1m[35m (0.9ms)[0m 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)
|
208
|
+
Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2015-10-26 10:18:56 +0800
|
2762
209
|
|
2763
210
|
|
2764
|
-
Started GET "/assets/
|
211
|
+
Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-10-26 10:18:56 +0800
|
2765
212
|
|
2766
213
|
|
2767
|
-
Started GET "/assets/
|
214
|
+
Started GET "/assets/jquery_ujs.self-d456baa54c1fa6be2ec3711f0a72ddf7a5b2f34a6b4f515f33767d6207b7d4b3.js?body=1" for ::1 at 2015-10-26 10:18:56 +0800
|
2768
215
|
|
2769
216
|
|
2770
|
-
Started GET "/assets/
|
217
|
+
Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-10-26 10:18:56 +0800
|
2771
218
|
|
2772
219
|
|
2773
|
-
Started GET "/assets/
|
220
|
+
Started GET "/assets/moment.self-9e3cbea792908410da80685bcee3695e54b449d063e5dadb3b6c05e038b46444.js?body=1" for ::1 at 2015-10-26 10:18:56 +0800
|
2774
221
|
|
2775
222
|
|
2776
|
-
Started GET "/assets/
|
223
|
+
Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-10-26 10:18:56 +0800
|
2777
224
|
|
2778
225
|
|
2779
|
-
Started GET "/assets/bootstrap/
|
226
|
+
Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-10-26 10:18:56 +0800
|
2780
227
|
|
2781
228
|
|
2782
|
-
Started GET "/assets/bootstrap/
|
229
|
+
Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-10-26 10:18:56 +0800
|
2783
230
|
|
2784
231
|
|
2785
|
-
Started GET "/assets/bootstrap/collapse-
|
232
|
+
Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-10-26 10:18:56 +0800
|
2786
233
|
|
2787
234
|
|
2788
|
-
Started GET "/assets/bootstrap/dropdown-
|
235
|
+
Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-10-26 10:18:56 +0800
|
2789
236
|
|
2790
237
|
|
2791
|
-
Started GET "/assets/bootstrap
|
238
|
+
Started GET "/assets/bootstrap-datetimepicker.self-f4c780e77f9e34c90cc43fc2a2bc2d2f11d5b54470904990480fc9cb434d918c.js?body=1" for ::1 at 2015-10-26 10:18:56 +0800
|
2792
239
|
|
2793
240
|
|
2794
|
-
Started GET "/assets/bootstrap/
|
241
|
+
Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-10-26 10:18:56 +0800
|
2795
242
|
|
2796
243
|
|
2797
|
-
Started GET "/assets/bootstrap/
|
244
|
+
Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-10-26 10:18:56 +0800
|
2798
245
|
|
2799
246
|
|
2800
|
-
Started GET "/assets/bootstrap/scrollspy-
|
247
|
+
Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-10-26 10:18:56 +0800
|
2801
248
|
|
2802
249
|
|
2803
|
-
Started GET "/assets/bootstrap/
|
250
|
+
Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-10-26 10:18:56 +0800
|
2804
251
|
|
2805
252
|
|
2806
|
-
Started GET "/assets/bootstrap/
|
253
|
+
Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-10-26 10:18:56 +0800
|
2807
254
|
|
2808
255
|
|
2809
|
-
Started GET "/assets/bootstrap
|
256
|
+
Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-10-26 10:18:56 +0800
|
2810
257
|
|
2811
258
|
|
2812
|
-
Started GET "/assets/
|
259
|
+
Started GET "/assets/application.self-d088784b7ecb87f1ea17e6f982fa968ffefcc07b79de6ecc548fc00242868da6.js?body=1" for ::1 at 2015-10-26 10:18:56 +0800
|
2813
260
|
|
2814
261
|
|
2815
|
-
Started GET "/assets/
|
262
|
+
Started GET "/assets/datetime_picker_input.self-5d80b5fca9c88e2721fa66247e6edc0a92d2d6174fe92e2eba3a29e72aa50eaa.js?body=1" for ::1 at 2015-10-26 10:18:56 +0800
|
2816
263
|
|
2817
264
|
|
2818
|
-
Started GET "/
|
265
|
+
Started GET "/appointments/new" for ::1 at 2015-10-26 10:18:58 +0800
|
266
|
+
Processing by AppointmentsController#new as HTML
|
267
|
+
Rendered appointments/_form.html.slim (10.4ms)
|
268
|
+
Rendered appointments/new.html.slim within layouts/application (11.7ms)
|
269
|
+
Completed 200 OK in 102ms (Views: 101.1ms | ActiveRecord: 0.0ms)
|
2819
270
|
|
2820
271
|
|
2821
|
-
Started GET "/assets/
|
272
|
+
Started GET "/assets/bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2" for ::1 at 2015-10-26 10:18:58 +0800
|
2822
273
|
|
2823
274
|
|
2824
|
-
Started
|
275
|
+
Started POST "/appointments" for ::1 at 2015-10-26 10:19:07 +0800
|
276
|
+
Processing by AppointmentsController#create as HTML
|
277
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"Los6FMt65Gy4+/4BqjpYLCOBIx4Dqa936/u5BSFVOVe0FoP1AR0aSE2yKsUjdKJQtJ1FnOijTxadxaIUGhbpVQ==", "appointment"=>{"scheduled_at"=>"28.10.2015 12:00 AM +0800"}, "commit"=>"Create Appointment"}
|
278
|
+
Rendered appointments/_form.html.slim (1.7ms)
|
279
|
+
Rendered appointments/new.html.slim within layouts/application (5.8ms)
|
280
|
+
Completed 200 OK in 93ms (Views: 92.0ms | ActiveRecord: 0.0ms)
|
2825
281
|
|
2826
282
|
|
2827
|
-
Started GET "/
|
2828
|
-
[1m[36m (1.3ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
2829
|
-
[1m[35m (1.5ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
2830
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
2831
|
-
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2832
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2833
|
-
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
2834
|
-
[1m[36m (0.9ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
2835
|
-
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
2836
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
2837
|
-
[1m[35m (0.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2838
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2839
|
-
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
2840
|
-
[1m[36m (1.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
2841
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
2842
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
2843
|
-
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2844
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2845
|
-
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
2846
|
-
[1m[36m (1.2ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
2847
|
-
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
2848
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
2849
|
-
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2850
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2851
|
-
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
2852
|
-
[1m[36m (0.8ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
2853
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
2854
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
2855
|
-
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2856
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2857
|
-
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
2858
|
-
[1m[36m (1.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
2859
|
-
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
2860
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
2861
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2862
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2863
|
-
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
2864
|
-
[1m[36m (1.3ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
2865
|
-
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
2866
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
2867
|
-
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2868
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2869
|
-
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
2870
|
-
[1m[36m (1.1ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
2871
|
-
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
2872
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
2873
|
-
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2874
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2875
|
-
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
2876
|
-
[1m[36m (1.9ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
2877
|
-
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
2878
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
2879
|
-
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2880
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2881
|
-
[1m[35m (1.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
2882
|
-
[1m[36m (0.8ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
2883
|
-
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
2884
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
2885
|
-
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2886
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2887
|
-
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
2888
|
-
[1m[36m (1.3ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
2889
|
-
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
2890
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
2891
|
-
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2892
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2893
|
-
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
2894
|
-
[1m[36m (1.4ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
2895
|
-
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
2896
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
2897
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2898
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2899
|
-
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
2900
|
-
[1m[36m (0.9ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
2901
|
-
[1m[35m (0.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
2902
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
2903
|
-
[1m[35m (0.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2904
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2905
|
-
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
2906
|
-
[1m[36m (1.2ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
2907
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
2908
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
2909
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2910
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2911
|
-
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
2912
|
-
|
2913
|
-
|
2914
|
-
Started GET "/" for ::1 at 2015-02-24 15:12:31 +0800
|
283
|
+
Started GET "/" for ::1 at 2015-10-26 10:19:50 +0800
|
2915
284
|
Processing by AppointmentsController#index as HTML
|
2916
285
|
[1m[35mAppointment Load (0.1ms)[0m SELECT "appointments".* FROM "appointments"
|
2917
|
-
Rendered appointments/index.slim within layouts/application (0.9ms)
|
2918
|
-
Completed 200 OK in
|
2919
|
-
|
286
|
+
Rendered appointments/index.html.slim within layouts/application (0.9ms)
|
287
|
+
Completed 200 OK in 104ms (Views: 103.0ms | ActiveRecord: 0.1ms)
|
2920
288
|
|
2921
|
-
Started GET "/assets/application-0a62de01ca47db5ed7d31c63748c716c.css?body=1" for ::1 at 2015-02-24 15:12:32 +0800
|
2922
289
|
|
290
|
+
Started GET "/assets/application.self-29525f85b8d205357a5e578fc0071fdfb2ca6cae6561c63722753053f9eb7d27.css?body=1" for ::1 at 2015-10-26 10:19:51 +0800
|
2923
291
|
|
2924
|
-
Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
|
2925
292
|
|
293
|
+
Started GET "/assets/jquery.self-a714331225dda820228db323939889f149aec0127aeb06255646b616ba1ca419.js?body=1" for ::1 at 2015-10-26 10:19:51 +0800
|
2926
294
|
|
2927
|
-
Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
|
2928
295
|
|
296
|
+
Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2015-10-26 10:19:51 +0800
|
2929
297
|
|
2930
|
-
Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
|
2931
298
|
|
299
|
+
Started GET "/assets/jquery_ujs.self-d456baa54c1fa6be2ec3711f0a72ddf7a5b2f34a6b4f515f33767d6207b7d4b3.js?body=1" for ::1 at 2015-10-26 10:19:51 +0800
|
2932
300
|
|
2933
|
-
Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
|
2934
301
|
|
302
|
+
Started GET "/assets/bootstrap-datetimepicker.self-f4c780e77f9e34c90cc43fc2a2bc2d2f11d5b54470904990480fc9cb434d918c.js?body=1" for ::1 at 2015-10-26 10:19:51 +0800
|
2935
303
|
|
2936
|
-
Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
|
2937
304
|
|
305
|
+
Started GET "/assets/moment.self-9e3cbea792908410da80685bcee3695e54b449d063e5dadb3b6c05e038b46444.js?body=1" for ::1 at 2015-10-26 10:19:51 +0800
|
2938
306
|
|
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
307
|
|
308
|
+
Started GET "/appointments/new" for ::1 at 2015-10-26 11:00:33 +0800
|
309
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
310
|
+
Processing by AppointmentsController#new as HTML
|
311
|
+
Rendered appointments/_form.html.slim (59.2ms)
|
312
|
+
Rendered appointments/new.html.slim within layouts/application (82.2ms)
|
313
|
+
Completed 200 OK in 3542ms (Views: 3530.8ms | ActiveRecord: 0.3ms)
|
2962
314
|
|
2963
|
-
Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
|
2964
315
|
|
316
|
+
Started GET "/assets/jquery_ujs.self-d456baa54c1fa6be2ec3711f0a72ddf7a5b2f34a6b4f515f33767d6207b7d4b3.js?body=1" for ::1 at 2015-10-26 11:00:37 +0800
|
2965
317
|
|
2966
|
-
Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
|
2967
318
|
|
319
|
+
Started GET "/assets/application.self-e49c548d00f1a87347880fa01a58dc0dcd5215dc3e543183bc19b279854a3af1.css?body=1" for ::1 at 2015-10-26 11:00:37 +0800
|
2968
320
|
|
2969
|
-
Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
|
2970
321
|
|
322
|
+
Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-10-26 11:00:37 +0800
|
2971
323
|
|
2972
|
-
Started GET "/assets/moment-66988874bf5714cb1e4a6f53d733b6e1.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
|
2973
324
|
|
325
|
+
Started GET "/assets/jquery.self-a714331225dda820228db323939889f149aec0127aeb06255646b616ba1ca419.js?body=1" for ::1 at 2015-10-26 11:00:37 +0800
|
2974
326
|
|
2975
|
-
Started GET "/assets/bootstrap-datetimepicker-207776b276cc4aec32e5f32af8939235.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
|
2976
327
|
|
328
|
+
Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2015-10-26 11:00:37 +0800
|
2977
329
|
|
2978
|
-
Started GET "/assets/datetime_input-4dc47c2b25f6fcffcb8d918be89f8065.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
|
2979
330
|
|
331
|
+
Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-10-26 11:00:37 +0800
|
2980
332
|
|
2981
|
-
Started GET "/assets/application-8b46cac90221106006a918a438b0ea95.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
|
2982
333
|
|
334
|
+
Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-10-26 11:00:37 +0800
|
2983
335
|
|
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
|
-
[1m[36m (1.2ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
2995
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
2996
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
2997
|
-
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2998
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2999
|
-
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3000
|
-
[1m[36m (1.2ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3001
|
-
[1m[35m (1.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3002
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3003
|
-
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3004
|
-
[1m[36m (0.2ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3005
|
-
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3006
|
-
[1m[36m (1.1ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3007
|
-
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3008
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3009
|
-
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3010
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3011
|
-
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3012
|
-
[1m[36m (1.3ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3013
|
-
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3014
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3015
|
-
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3016
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3017
|
-
[1m[35m (1.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3018
|
-
[1m[36m (2.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3019
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3020
|
-
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
3021
|
-
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3022
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3023
|
-
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3024
|
-
[1m[36m (0.9ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3025
|
-
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3026
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
3027
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3028
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3029
|
-
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3030
|
-
[1m[36m (1.1ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3031
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3032
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3033
|
-
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3034
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3035
|
-
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3036
|
-
[1m[36m (1.1ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3037
|
-
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3038
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3039
|
-
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3040
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3041
|
-
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3042
|
-
[1m[36m (1.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3043
|
-
[1m[35m (1.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3044
|
-
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
3045
|
-
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3046
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3047
|
-
[1m[35m (1.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3048
|
-
[1m[36m (1.2ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3049
|
-
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3050
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
3051
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3052
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3053
|
-
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3054
|
-
[1m[36m (1.2ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3055
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3056
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3057
|
-
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3058
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3059
|
-
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3060
|
-
[1m[36m (1.3ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3061
|
-
[1m[35m (1.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3062
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3063
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3064
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3065
|
-
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3066
|
-
[1m[36m (1.2ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3067
|
-
[1m[35m (1.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3068
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
3069
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3070
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3071
|
-
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3072
|
-
[1m[36m (1.2ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3073
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3074
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3075
|
-
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3076
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3077
|
-
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3078
|
-
[1m[36m (1.1ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3079
|
-
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3080
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
3081
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3082
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3083
|
-
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3084
|
-
[1m[36m (1.2ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3085
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3086
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3087
|
-
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3088
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3089
|
-
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3090
|
-
[1m[36m (1.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3091
|
-
[1m[35m (1.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3092
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3093
|
-
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3094
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3095
|
-
[1m[35m (1.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3096
|
-
[1m[36m (1.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3097
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3098
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3099
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3100
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3101
|
-
[1m[35m (1.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3102
|
-
[1m[36m (0.9ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3103
|
-
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3104
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3105
|
-
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3106
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3107
|
-
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3108
|
-
[1m[36m (1.2ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3109
|
-
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3110
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3111
|
-
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3112
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3113
|
-
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3114
|
-
[1m[36m (1.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3115
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3116
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3117
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3118
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3119
|
-
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3120
|
-
[1m[36m (1.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3121
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3122
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3123
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3124
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3125
|
-
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3126
|
-
[1m[36m (1.3ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3127
|
-
[1m[35m (1.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3128
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3129
|
-
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3130
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3131
|
-
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3132
|
-
[1m[36m (1.3ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3133
|
-
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3134
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
3135
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3136
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3137
|
-
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3138
|
-
[1m[36m (1.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3139
|
-
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3140
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
3141
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3142
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3143
|
-
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3144
|
-
[1m[36m (2.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3145
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3146
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
3147
|
-
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3148
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3149
|
-
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3150
|
-
[1m[36m (2.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3151
|
-
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3152
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3153
|
-
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3154
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3155
|
-
[1m[35m (1.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3156
|
-
[1m[36m (2.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3157
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3158
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
3159
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3160
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3161
|
-
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3162
|
-
[1m[36m (1.8ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3163
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3164
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
3165
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3166
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3167
|
-
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3168
|
-
[1m[36m (2.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3169
|
-
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3170
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3171
|
-
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3172
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3173
|
-
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3174
|
-
|
3175
|
-
|
3176
|
-
Started GET "/" for ::1 at 2015-02-26 14:39:20 +0800
|
3177
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
3178
|
-
Processing by AppointmentsController#index as HTML
|
3179
|
-
[1m[35mAppointment Load (0.1ms)[0m 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
336
|
|
337
|
+
Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-10-26 11:00:37 +0800
|
3183
338
|
|
3184
|
-
Started GET "/assets/application-0a62de01ca47db5ed7d31c63748c716c.css?body=1" for ::1 at 2015-02-26 14:39:23 +0800
|
3185
339
|
|
340
|
+
Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-10-26 11:00:37 +0800
|
3186
341
|
|
3187
|
-
Started GET "/assets/moment-66988874bf5714cb1e4a6f53d733b6e1.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
|
3188
342
|
|
343
|
+
Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-10-26 11:00:37 +0800
|
3189
344
|
|
3190
|
-
Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
|
3191
345
|
|
346
|
+
Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-10-26 11:00:37 +0800
|
3192
347
|
|
3193
|
-
Started GET "/assets/bootstrap-datetimepicker-207776b276cc4aec32e5f32af8939235.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
|
3194
348
|
|
349
|
+
Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-10-26 11:00:37 +0800
|
3195
350
|
|
3196
|
-
Started GET "/assets/datetime_picker_input-e5f2ba064552406fa8838767efac72b8.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
|
3197
351
|
|
352
|
+
Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-10-26 11:00:37 +0800
|
3198
353
|
|
3199
|
-
Started GET "/assets/application-d3cf3f1a766b509b306c6384fb48e152.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
|
3200
354
|
|
355
|
+
Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-10-26 11:00:37 +0800
|
3201
356
|
|
3202
|
-
Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
|
3203
357
|
|
358
|
+
Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-10-26 11:00:37 +0800
|
3204
359
|
|
3205
|
-
Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
|
3206
360
|
|
361
|
+
Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-10-26 11:00:37 +0800
|
3207
362
|
|
3208
|
-
Started GET "/assets/bootstrap/alert-7c03e11fecf6b3ef100f76ae4f08586e.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
|
3209
363
|
|
364
|
+
Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-10-26 11:00:37 +0800
|
3210
365
|
|
3211
|
-
Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
|
3212
366
|
|
367
|
+
Started GET "/assets/bootstrap-datetimepicker.self-888f4dbe0be0357c4b5edb5f675b8bb7f825e23cac0361f9eb50a9f6f549050b.js?body=1" for ::1 at 2015-10-26 11:00:37 +0800
|
3213
368
|
|
3214
|
-
Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
|
3215
369
|
|
370
|
+
Started GET "/assets/application.self-d088784b7ecb87f1ea17e6f982fa968ffefcc07b79de6ecc548fc00242868da6.js?body=1" for ::1 at 2015-10-26 11:00:37 +0800
|
3216
371
|
|
3217
|
-
Started GET "/assets/bootstrap/carousel-93f34f850a932957c93b7605c79faf45.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
|
3218
372
|
|
373
|
+
Started GET "/assets/bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2" for ::1 at 2015-10-26 11:00:37 +0800
|
3219
374
|
|
3220
|
-
Started GET "/assets/bootstrap/collapse-7a82a3d4fb154ded3d2702465e21ca00.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
|
3221
375
|
|
376
|
+
Started GET "/appointments/new" for ::1 at 2015-10-26 11:03:48 +0800
|
377
|
+
Processing by AppointmentsController#new as HTML
|
378
|
+
Rendered appointments/_form.html.slim (3.3ms)
|
379
|
+
Rendered appointments/new.html.slim within layouts/application (4.3ms)
|
380
|
+
Completed 200 OK in 109ms (Views: 105.1ms | ActiveRecord: 0.3ms)
|
3222
381
|
|
3223
|
-
Started GET "/assets/bootstrap/dropdown-65c3929585250221f53bae696936ed44.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
|
3224
382
|
|
383
|
+
Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2015-10-26 11:03:48 +0800
|
3225
384
|
|
3226
|
-
Started GET "/assets/bootstrap/tab-a90a1841af8c1eae12bfa5283a8093b0.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
|
3227
385
|
|
386
|
+
Started GET "/assets/jquery.self-a714331225dda820228db323939889f149aec0127aeb06255646b616ba1ca419.js?body=1" for ::1 at 2015-10-26 11:03:48 +0800
|
3228
387
|
|
3229
|
-
Started GET "/assets/bootstrap/scrollspy-e550695030be1d627d1ba91b14792316.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
|
3230
388
|
|
389
|
+
Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-10-26 11:03:48 +0800
|
3231
390
|
|
3232
|
-
Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
|
3233
391
|
|
392
|
+
Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-10-26 11:03:48 +0800
|
3234
393
|
|
3235
|
-
Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
|
3236
394
|
|
395
|
+
Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-10-26 11:03:48 +0800
|
3237
396
|
|
3238
|
-
Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
|
3239
397
|
|
398
|
+
Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-10-26 11:03:48 +0800
|
3240
399
|
|
3241
|
-
Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
|
3242
400
|
|
401
|
+
Started GET "/assets/jquery_ujs.self-d456baa54c1fa6be2ec3711f0a72ddf7a5b2f34a6b4f515f33767d6207b7d4b3.js?body=1" for ::1 at 2015-10-26 11:03:48 +0800
|
3243
402
|
|
3244
|
-
Started GET "/assets/bootstrap/transition-9e4de96204f41141474e9dbb59570af9.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
|
3245
403
|
|
404
|
+
Started GET "/assets/application.self-e49c548d00f1a87347880fa01a58dc0dcd5215dc3e543183bc19b279854a3af1.css?body=1" for ::1 at 2015-10-26 11:03:48 +0800
|
3246
405
|
|
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
406
|
|
3252
|
-
|
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'
|
407
|
+
Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-10-26 11:03:48 +0800
|
3260
408
|
|
3261
409
|
|
3262
|
-
|
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)
|
410
|
+
Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-10-26 11:03:48 +0800
|
3266
411
|
|
3267
412
|
|
3268
|
-
Started GET "/
|
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
|
413
|
+
Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-10-26 11:03:48 +0800
|
3272
414
|
|
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
415
|
|
416
|
+
Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-10-26 11:03:48 +0800
|
3282
417
|
|
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
418
|
|
419
|
+
Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-10-26 11:03:48 +0800
|
3288
420
|
|
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
421
|
|
3294
|
-
|
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'
|
422
|
+
Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-10-26 11:03:48 +0800
|
3302
423
|
|
3303
424
|
|
3304
|
-
|
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)
|
425
|
+
Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-10-26 11:03:48 +0800
|
3308
426
|
|
3309
427
|
|
3310
|
-
Started GET "/
|
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
|
428
|
+
Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-10-26 11:03:48 +0800
|
3314
429
|
|
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
430
|
|
431
|
+
Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-10-26 11:03:48 +0800
|
3324
432
|
|
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
433
|
|
434
|
+
Started GET "/assets/bootstrap-datetimepicker.self-888f4dbe0be0357c4b5edb5f675b8bb7f825e23cac0361f9eb50a9f6f549050b.js?body=1" for ::1 at 2015-10-26 11:03:48 +0800
|
3330
435
|
|
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
436
|
|
3336
|
-
|
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'
|
437
|
+
Started GET "/assets/application.self-d088784b7ecb87f1ea17e6f982fa968ffefcc07b79de6ecc548fc00242868da6.js?body=1" for ::1 at 2015-10-26 11:03:48 +0800
|
3344
438
|
|
3345
439
|
|
3346
|
-
|
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)
|
440
|
+
Started GET "/assets/bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2" for ::1 at 2015-10-26 11:03:48 +0800
|
3350
441
|
|
3351
442
|
|
3352
|
-
Started GET "/appointments/new" for ::1 at 2015-
|
3353
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
443
|
+
Started GET "/appointments/new" for ::1 at 2015-10-26 11:03:48 +0800
|
3354
444
|
Processing by AppointmentsController#new as HTML
|
3355
|
-
Rendered appointments/
|
3356
|
-
|
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)
|
445
|
+
Rendered appointments/_form.html.slim (1.9ms)
|
446
|
+
Rendered appointments/new.html.slim within layouts/application (2.9ms)
|
447
|
+
Completed 200 OK in 86ms (Views: 85.7ms | ActiveRecord: 0.0ms)
|
3372
448
|
|
3373
449
|
|
3374
|
-
Started GET "/
|
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
|
450
|
+
Started GET "/assets/application.self-e49c548d00f1a87347880fa01a58dc0dcd5215dc3e543183bc19b279854a3af1.css?body=1" for ::1 at 2015-10-26 11:03:49 +0800
|
3378
451
|
|
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
452
|
|
453
|
+
Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-10-26 11:03:49 +0800
|
3388
454
|
|
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
455
|
|
456
|
+
Started GET "/assets/jquery.self-a714331225dda820228db323939889f149aec0127aeb06255646b616ba1ca419.js?body=1" for ::1 at 2015-10-26 11:03:49 +0800
|
3394
457
|
|
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
458
|
|
3400
|
-
|
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'
|
459
|
+
Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2015-10-26 11:03:49 +0800
|
3408
460
|
|
3409
461
|
|
3410
|
-
|
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)
|
462
|
+
Started GET "/assets/jquery_ujs.self-d456baa54c1fa6be2ec3711f0a72ddf7a5b2f34a6b4f515f33767d6207b7d4b3.js?body=1" for ::1 at 2015-10-26 11:03:49 +0800
|
3414
463
|
|
3415
464
|
|
3416
|
-
Started GET "/
|
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
|
465
|
+
Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-10-26 11:03:49 +0800
|
3420
466
|
|
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
467
|
|
468
|
+
Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-10-26 11:03:49 +0800
|
3430
469
|
|
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
470
|
|
471
|
+
Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-10-26 11:03:49 +0800
|
3436
472
|
|
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
473
|
|
3442
|
-
|
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'
|
474
|
+
Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-10-26 11:03:49 +0800
|
3450
475
|
|
3451
476
|
|
3452
|
-
|
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)
|
477
|
+
Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-10-26 11:03:49 +0800
|
3456
478
|
|
3457
479
|
|
3458
|
-
Started GET "/
|
3459
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
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
|
480
|
+
Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-10-26 11:03:49 +0800
|
3463
481
|
|
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
482
|
|
483
|
+
Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-10-26 11:03:49 +0800
|
3473
484
|
|
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
485
|
|
486
|
+
Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-10-26 11:03:49 +0800
|
3479
487
|
|
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
488
|
|
3485
|
-
|
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'
|
489
|
+
Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-10-26 11:03:49 +0800
|
3488
490
|
|
3489
491
|
|
3490
|
-
|
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)
|
492
|
+
Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-10-26 11:03:49 +0800
|
3494
493
|
|
3495
494
|
|
3496
|
-
Started GET "/
|
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
|
495
|
+
Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-10-26 11:03:49 +0800
|
3500
496
|
|
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
497
|
|
498
|
+
Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-10-26 11:03:49 +0800
|
3505
499
|
|
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
500
|
|
501
|
+
Started GET "/assets/bootstrap-datetimepicker.self-888f4dbe0be0357c4b5edb5f675b8bb7f825e23cac0361f9eb50a9f6f549050b.js?body=1" for ::1 at 2015-10-26 11:03:49 +0800
|
3511
502
|
|
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
503
|
|
3517
|
-
|
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'
|
504
|
+
Started GET "/assets/application.self-d088784b7ecb87f1ea17e6f982fa968ffefcc07b79de6ecc548fc00242868da6.js?body=1" for ::1 at 2015-10-26 11:03:49 +0800
|
3520
505
|
|
3521
506
|
|
3522
|
-
|
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)
|
507
|
+
Started GET "/assets/bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2" for ::1 at 2015-10-26 11:03:49 +0800
|
3526
508
|
|
3527
509
|
|
3528
|
-
Started GET "/appointments/new" for ::1 at 2015-
|
510
|
+
Started GET "/appointments/new" for ::1 at 2015-10-26 11:22:22 +0800
|
3529
511
|
Processing by AppointmentsController#new as HTML
|
3530
|
-
Rendered appointments/
|
3531
|
-
|
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
|
512
|
+
Rendered appointments/_form.html.slim (3.2ms)
|
513
|
+
Rendered appointments/new.html.slim within layouts/application (4.4ms)
|
514
|
+
Completed 200 OK in 100ms (Views: 96.3ms | ActiveRecord: 0.4ms)
|
3538
515
|
|
3539
516
|
|
3540
|
-
Started GET "/assets/
|
517
|
+
Started GET "/assets/application.self-e49c548d00f1a87347880fa01a58dc0dcd5215dc3e543183bc19b279854a3af1.css?body=1" for ::1 at 2015-10-26 11:22:22 +0800
|
3541
518
|
|
3542
519
|
|
3543
|
-
Started GET "/assets/
|
520
|
+
Started GET "/assets/jquery.self-a714331225dda820228db323939889f149aec0127aeb06255646b616ba1ca419.js?body=1" for ::1 at 2015-10-26 11:22:22 +0800
|
3544
521
|
|
3545
522
|
|
3546
|
-
Started GET "/assets/
|
523
|
+
Started GET "/assets/jquery_ujs.self-d456baa54c1fa6be2ec3711f0a72ddf7a5b2f34a6b4f515f33767d6207b7d4b3.js?body=1" for ::1 at 2015-10-26 11:22:22 +0800
|
3547
524
|
|
3548
525
|
|
3549
|
-
Started GET "/assets/bootstrap/
|
526
|
+
Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-10-26 11:22:22 +0800
|
3550
527
|
|
3551
528
|
|
3552
|
-
Started GET "/assets/
|
529
|
+
Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2015-10-26 11:22:22 +0800
|
3553
530
|
|
3554
531
|
|
3555
|
-
Started GET "/assets/bootstrap/
|
532
|
+
Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-10-26 11:22:22 +0800
|
3556
533
|
|
3557
534
|
|
3558
|
-
Started GET "/assets/bootstrap/
|
535
|
+
Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-10-26 11:22:22 +0800
|
3559
536
|
|
3560
537
|
|
3561
|
-
Started GET "/assets/bootstrap/
|
538
|
+
Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-10-26 11:22:22 +0800
|
3562
539
|
|
3563
540
|
|
3564
|
-
Started GET "/assets/bootstrap/
|
541
|
+
Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-10-26 11:22:22 +0800
|
3565
542
|
|
3566
543
|
|
3567
|
-
Started GET "/assets/bootstrap/
|
544
|
+
Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-10-26 11:22:22 +0800
|
3568
545
|
|
3569
546
|
|
3570
|
-
Started GET "/assets/bootstrap/
|
547
|
+
Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-10-26 11:22:22 +0800
|
3571
548
|
|
3572
549
|
|
3573
|
-
Started GET "/assets/bootstrap/
|
550
|
+
Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-10-26 11:22:22 +0800
|
3574
551
|
|
3575
552
|
|
3576
|
-
Started GET "/assets/bootstrap/
|
553
|
+
Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-10-26 11:22:22 +0800
|
3577
554
|
|
3578
555
|
|
3579
|
-
Started GET "/assets/bootstrap/
|
556
|
+
Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-10-26 11:22:22 +0800
|
3580
557
|
|
3581
558
|
|
3582
|
-
Started GET "/assets/bootstrap-
|
559
|
+
Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-10-26 11:22:22 +0800
|
3583
560
|
|
3584
561
|
|
3585
|
-
Started GET "/assets/
|
562
|
+
Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-10-26 11:22:22 +0800
|
3586
563
|
|
3587
564
|
|
3588
|
-
Started GET "/assets/bootstrap-datetimepicker-
|
565
|
+
Started GET "/assets/bootstrap-datetimepicker.self-888f4dbe0be0357c4b5edb5f675b8bb7f825e23cac0361f9eb50a9f6f549050b.js?body=1" for ::1 at 2015-10-26 11:22:22 +0800
|
3589
566
|
|
3590
567
|
|
3591
|
-
Started GET "/assets/
|
568
|
+
Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-10-26 11:22:22 +0800
|
3592
569
|
|
3593
570
|
|
3594
|
-
Started GET "/assets/application-
|
571
|
+
Started GET "/assets/application.self-d088784b7ecb87f1ea17e6f982fa968ffefcc07b79de6ecc548fc00242868da6.js?body=1" for ::1 at 2015-10-26 11:22:22 +0800
|
3595
572
|
|
3596
573
|
|
3597
|
-
Started GET "/assets/bootstrap/glyphicons-halflings-regular-
|
3598
|
-
[1m[36m (1.8ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3599
|
-
[1m[35m (1.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3600
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3601
|
-
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3602
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3603
|
-
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3604
|
-
[1m[36m (1.3ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3605
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3606
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3607
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3608
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3609
|
-
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3610
|
-
[1m[36m (2.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3611
|
-
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3612
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3613
|
-
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3614
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3615
|
-
[1m[35m (1.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3616
|
-
[1m[36m (2.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3617
|
-
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3618
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3619
|
-
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3620
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3621
|
-
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3622
|
-
[1m[36m (0.9ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3623
|
-
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3624
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
3625
|
-
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3626
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3627
|
-
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3628
|
-
[1m[36m (1.2ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3629
|
-
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3630
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3631
|
-
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3632
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3633
|
-
[1m[35m (1.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3634
|
-
[1m[36m (1.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3635
|
-
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3636
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3637
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3638
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3639
|
-
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3640
|
-
[1m[36m (1.2ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3641
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3642
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
3643
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3644
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3645
|
-
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3646
|
-
[1m[36m (1.0ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3647
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3648
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3649
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3650
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3651
|
-
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
3652
|
-
[1m[36m (1.1ms)[0m [1mCREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) [0m
|
3653
|
-
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3654
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3655
|
-
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3656
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3657
|
-
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
|
574
|
+
Started GET "/assets/bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2" for ::1 at 2015-10-26 11:22:22 +0800
|