date_select_separator 0.0.7 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +20 -0
- data/.travis.yml +23 -0
- data/Gemfile +3 -0
- data/LICENSE +28 -0
- data/README.md +3 -4
- data/Rakefile +3 -21
- data/date_select_separator.gemspec +21 -0
- data/gemfiles/Gemfile-rails.4.0 +7 -0
- data/gemfiles/Gemfile-rails.4.1 +7 -0
- data/gemfiles/Gemfile-rails.4.2 +7 -0
- data/gemfiles/Gemfile-rails.5.0 +7 -0
- data/lib/date_select_separator/action_view_extension.rb +85 -90
- data/lib/date_select_separator/railtie.rb +1 -1
- data/lib/date_select_separator/version.rb +1 -1
- metadata +61 -114
- data/test/date_select_separator_test.rb +0 -4599
- data/test/dummy/README.rdoc +0 -28
- data/test/dummy/Rakefile +0 -6
- data/test/dummy/app/assets/javascripts/application.js +0 -13
- data/test/dummy/app/assets/stylesheets/application.css +0 -13
- data/test/dummy/app/controllers/application_controller.rb +0 -5
- data/test/dummy/app/controllers/samples_controller.rb +0 -58
- data/test/dummy/app/helpers/application_helper.rb +0 -2
- data/test/dummy/app/models/sample.rb +0 -3
- data/test/dummy/app/views/layouts/application.html.erb +0 -14
- data/test/dummy/app/views/samples/_form.html.erb +0 -29
- data/test/dummy/app/views/samples/edit.html.erb +0 -6
- data/test/dummy/app/views/samples/index.html.erb +0 -31
- data/test/dummy/app/views/samples/new.html.erb +0 -5
- data/test/dummy/app/views/samples/show.html.erb +0 -19
- data/test/dummy/bin/bundle +0 -3
- data/test/dummy/bin/rails +0 -4
- data/test/dummy/bin/rake +0 -4
- data/test/dummy/config.ru +0 -4
- data/test/dummy/config/application.rb +0 -24
- data/test/dummy/config/boot.rb +0 -5
- data/test/dummy/config/database.yml +0 -25
- data/test/dummy/config/environment.rb +0 -5
- data/test/dummy/config/environments/development.rb +0 -31
- data/test/dummy/config/environments/production.rb +0 -80
- data/test/dummy/config/environments/test.rb +0 -38
- data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/dummy/config/initializers/inflections.rb +0 -16
- data/test/dummy/config/initializers/mime_types.rb +0 -5
- data/test/dummy/config/initializers/secret_token.rb +0 -12
- data/test/dummy/config/initializers/session_store.rb +0 -3
- data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
- data/test/dummy/config/locales/en.yml +0 -218
- data/test/dummy/config/locales/ja.yml +0 -208
- data/test/dummy/config/routes.rb +0 -4
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20140214065227_create_samples.rb +0 -11
- data/test/dummy/db/schema.rb +0 -24
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +0 -1549
- data/test/dummy/log/test.log +0 -128327
- data/test/dummy/public/404.html +0 -58
- data/test/dummy/public/422.html +0 -58
- data/test/dummy/public/500.html +0 -57
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/test_helper.rb +0 -12
data/test/dummy/config/routes.rb
DELETED
Binary file
|
data/test/dummy/db/schema.rb
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
# encoding: UTF-8
|
2
|
-
# This file is auto-generated from the current state of the database. Instead
|
3
|
-
# of editing this file, please use the migrations feature of Active Record to
|
4
|
-
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
-
#
|
6
|
-
# Note that this schema.rb definition is the authoritative source for your
|
7
|
-
# database schema. If you need to create the application database on another
|
8
|
-
# system, you should be using db:schema:load, not running all the migrations
|
9
|
-
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
-
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
-
#
|
12
|
-
# It's strongly recommended that you check this file into your version control system.
|
13
|
-
|
14
|
-
ActiveRecord::Schema.define(version: 20140214065227) do
|
15
|
-
|
16
|
-
create_table "samples", force: true do |t|
|
17
|
-
t.string "name"
|
18
|
-
t.date "dated_at"
|
19
|
-
t.datetime "datetimed_at"
|
20
|
-
t.datetime "created_at"
|
21
|
-
t.datetime "updated_at"
|
22
|
-
end
|
23
|
-
|
24
|
-
end
|
data/test/dummy/db/test.sqlite3
DELETED
Binary file
|
@@ -1,1549 +0,0 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
Started GET "/" for 127.0.0.1 at 2015-01-05 15:26:33 +0900
|
4
|
-
|
5
|
-
ActiveRecord::PendingMigrationError (
|
6
|
-
|
7
|
-
Migrations are pending. To resolve this issue, run:
|
8
|
-
|
9
|
-
bin/rake db:migrate RAILS_ENV=development
|
10
|
-
|
11
|
-
):
|
12
|
-
activerecord (4.2.0) lib/active_record/migration.rb:393:in `check_pending!'
|
13
|
-
activerecord (4.2.0) lib/active_record/migration.rb:374:in `call'
|
14
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
15
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
16
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
17
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
18
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
19
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
20
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
21
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
22
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
23
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
24
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
25
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
26
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
27
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
28
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
29
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
30
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
31
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
32
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
33
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
34
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
35
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
36
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
37
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
38
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
39
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
40
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
41
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
42
|
-
/Users/hiro/.rbenv/versions/2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
43
|
-
/Users/hiro/.rbenv/versions/2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
44
|
-
/Users/hiro/.rbenv/versions/2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
45
|
-
|
46
|
-
|
47
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.5ms)
|
48
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
|
49
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
|
50
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (21.6ms)
|
51
|
-
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
52
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
53
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
54
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
55
|
-
Migrating to CreateSamples (20140214065227)
|
56
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
57
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/hiro/Desktop/date_select_separator/test/dummy/db/migrate/20140214065227_create_samples.rb:8)
|
58
|
-
[1m[35m (0.5ms)[0m CREATE TABLE "samples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "dated_at" date, "datetimed_at" datetime, "created_at" datetime, "updated_at" datetime)
|
59
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140214065227"]]
|
60
|
-
[1m[35m (0.9ms)[0m commit transaction
|
61
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
62
|
-
|
63
|
-
|
64
|
-
Started GET "/" for 127.0.0.1 at 2015-01-05 15:26:50 +0900
|
65
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
66
|
-
Processing by SamplesController#index as HTML
|
67
|
-
[1m[35mSample Load (0.1ms)[0m SELECT "samples".* FROM "samples"
|
68
|
-
Rendered samples/index.html.erb within layouts/application (2.3ms)
|
69
|
-
Completed 200 OK in 30ms (Views: 27.9ms | ActiveRecord: 0.2ms)
|
70
|
-
|
71
|
-
|
72
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 15:26:51 +0900
|
73
|
-
|
74
|
-
|
75
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 15:26:51 +0900
|
76
|
-
|
77
|
-
|
78
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 15:26:53 +0900
|
79
|
-
Processing by SamplesController#new as HTML
|
80
|
-
Rendered samples/_form.html.erb (38.3ms)
|
81
|
-
Rendered samples/new.html.erb within layouts/application (42.7ms)
|
82
|
-
Completed 200 OK in 53ms (Views: 47.4ms | ActiveRecord: 0.3ms)
|
83
|
-
|
84
|
-
|
85
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 15:27:33 +0900
|
86
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
87
|
-
Processing by SamplesController#new as HTML
|
88
|
-
Rendered samples/_form.html.erb (35.0ms)
|
89
|
-
Rendered samples/new.html.erb within layouts/application (38.3ms)
|
90
|
-
Completed 200 OK in 57ms (Views: 51.6ms | ActiveRecord: 0.3ms)
|
91
|
-
|
92
|
-
|
93
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 15:27:33 +0900
|
94
|
-
|
95
|
-
|
96
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 15:27:33 +0900
|
97
|
-
|
98
|
-
|
99
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 15:38:38 +0900
|
100
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
101
|
-
Processing by SamplesController#new as HTML
|
102
|
-
Rendered samples/_form.html.erb (23.3ms)
|
103
|
-
Rendered samples/new.html.erb within layouts/application (26.6ms)
|
104
|
-
Completed 500 Internal Server Error in 38ms
|
105
|
-
|
106
|
-
ActionView::Template::Error (undefined method `output_buffer=' for #<ActionView::Helpers::DateTimeSelector:0x007fd3673d9040>):
|
107
|
-
21: </div>
|
108
|
-
22: <div class="field">
|
109
|
-
23: <%= f.label :datetimed_at %><br>
|
110
|
-
24: <%= f.datetime_select :datetimed_at, use_separators: { inline: true } %>
|
111
|
-
25: </div>
|
112
|
-
26: <div class="actions">
|
113
|
-
27: <%= f.submit %>
|
114
|
-
app/views/samples/_form.html.erb:24:in `block in _app_views_samples__form_html_erb__445162550264288293_70272984502540'
|
115
|
-
app/views/samples/_form.html.erb:1:in `_app_views_samples__form_html_erb__445162550264288293_70272984502540'
|
116
|
-
app/views/samples/new.html.erb:3:in `_app_views_samples_new_html_erb___2698611312088991461_70272973977100'
|
117
|
-
|
118
|
-
|
119
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (14.4ms)
|
120
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms)
|
121
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.9ms)
|
122
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (36.2ms)
|
123
|
-
|
124
|
-
|
125
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 15:39:31 +0900
|
126
|
-
Processing by SamplesController#new as HTML
|
127
|
-
Rendered samples/_form.html.erb (3.4ms)
|
128
|
-
Rendered samples/new.html.erb within layouts/application (4.0ms)
|
129
|
-
Completed 500 Internal Server Error in 6ms
|
130
|
-
|
131
|
-
ActionView::Template::Error (undefined method `output_buffer=' for #<ActionView::Helpers::DateTimeSelector:0x007fd3675cb628>):
|
132
|
-
21: </div>
|
133
|
-
22: <div class="field">
|
134
|
-
23: <%= f.label :datetimed_at %><br>
|
135
|
-
24: <%= f.datetime_select :datetimed_at, use_separators: { inline: true } %>
|
136
|
-
25: </div>
|
137
|
-
26: <div class="actions">
|
138
|
-
27: <%= f.submit %>
|
139
|
-
app/views/samples/_form.html.erb:24:in `block in _app_views_samples__form_html_erb__445162550264288293_70272984502540'
|
140
|
-
app/views/samples/_form.html.erb:1:in `_app_views_samples__form_html_erb__445162550264288293_70272984502540'
|
141
|
-
app/views/samples/new.html.erb:3:in `_app_views_samples_new_html_erb___2698611312088991461_70272973977100'
|
142
|
-
|
143
|
-
|
144
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.2ms)
|
145
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms)
|
146
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
|
147
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (20.2ms)
|
148
|
-
|
149
|
-
|
150
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 15:39:57 +0900
|
151
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
152
|
-
Processing by SamplesController#new as HTML
|
153
|
-
Rendered samples/_form.html.erb (21.5ms)
|
154
|
-
Rendered samples/new.html.erb within layouts/application (24.6ms)
|
155
|
-
Completed 500 Internal Server Error in 37ms
|
156
|
-
|
157
|
-
ActionView::Template::Error (undefined method `output_buffer=' for #<ActionView::Helpers::DateTimeSelector:0x007fad1da3a3f0>):
|
158
|
-
21: </div>
|
159
|
-
22: <div class="field">
|
160
|
-
23: <%= f.label :datetimed_at %><br>
|
161
|
-
24: <%= f.datetime_select :datetimed_at, use_separators: { inline: true } %>
|
162
|
-
25: </div>
|
163
|
-
26: <div class="actions">
|
164
|
-
27: <%= f.submit %>
|
165
|
-
app/views/samples/_form.html.erb:24:in `block in _app_views_samples__form_html_erb__3947089173011739890_70190752041040'
|
166
|
-
app/views/samples/_form.html.erb:1:in `_app_views_samples__form_html_erb__3947089173011739890_70190752041040'
|
167
|
-
app/views/samples/new.html.erb:3:in `_app_views_samples_new_html_erb___2738818056805037254_70190747736260'
|
168
|
-
|
169
|
-
|
170
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (13.6ms)
|
171
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms)
|
172
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (11.2ms)
|
173
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (37.5ms)
|
174
|
-
|
175
|
-
|
176
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 15:41:07 +0900
|
177
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
178
|
-
Processing by SamplesController#new as HTML
|
179
|
-
Rendered samples/_form.html.erb (23.5ms)
|
180
|
-
Rendered samples/new.html.erb within layouts/application (36.1ms)
|
181
|
-
Completed 500 Internal Server Error in 54ms
|
182
|
-
|
183
|
-
ActionView::Template::Error (undefined method `output_buffer=' for #<ActionView::Helpers::DateTimeSelector:0x007f85cea02e30>):
|
184
|
-
21: </div>
|
185
|
-
22: <div class="field">
|
186
|
-
23: <%= f.label :datetimed_at %><br>
|
187
|
-
24: <%= f.datetime_select :datetimed_at, use_separators: { inline: true } %>
|
188
|
-
25: </div>
|
189
|
-
26: <div class="actions">
|
190
|
-
27: <%= f.submit %>
|
191
|
-
app/views/samples/_form.html.erb:24:in `block in _app_views_samples__form_html_erb___2202324411974990964_70106303930640'
|
192
|
-
app/views/samples/_form.html.erb:1:in `_app_views_samples__form_html_erb___2202324411974990964_70106303930640'
|
193
|
-
app/views/samples/new.html.erb:3:in `_app_views_samples_new_html_erb__2431770973554196232_70106337402400'
|
194
|
-
|
195
|
-
|
196
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.9ms)
|
197
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms)
|
198
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.2ms)
|
199
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (34.0ms)
|
200
|
-
|
201
|
-
|
202
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 15:44:40 +0900
|
203
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
204
|
-
Processing by SamplesController#new as HTML
|
205
|
-
Rendered samples/_form.html.erb (25.2ms)
|
206
|
-
Rendered samples/new.html.erb within layouts/application (29.4ms)
|
207
|
-
Completed 500 Internal Server Error in 41ms
|
208
|
-
|
209
|
-
ActionView::Template::Error (undefined method `output_buffer=' for #<ActionView::Helpers::DateTimeSelector:0x007ff8ee88a5d8>):
|
210
|
-
21: </div>
|
211
|
-
22: <div class="field">
|
212
|
-
23: <%= f.label :datetimed_at %><br>
|
213
|
-
24: <%= f.datetime_select :datetimed_at, use_separators: { inline: true } %>
|
214
|
-
25: </div>
|
215
|
-
26: <div class="actions">
|
216
|
-
27: <%= f.submit %>
|
217
|
-
app/views/samples/_form.html.erb:24:in `block in _app_views_samples__form_html_erb__3055136187564476082_70353565935900'
|
218
|
-
app/views/samples/_form.html.erb:1:in `_app_views_samples__form_html_erb__3055136187564476082_70353565935900'
|
219
|
-
app/views/samples/new.html.erb:3:in `_app_views_samples_new_html_erb__3692481611459423854_70353569913840'
|
220
|
-
|
221
|
-
|
222
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.7ms)
|
223
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms)
|
224
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.4ms)
|
225
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (36.5ms)
|
226
|
-
|
227
|
-
|
228
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 15:44:47 +0900
|
229
|
-
Processing by SamplesController#new as HTML
|
230
|
-
Rendered samples/_form.html.erb (3.6ms)
|
231
|
-
Rendered samples/new.html.erb within layouts/application (4.4ms)
|
232
|
-
Completed 500 Internal Server Error in 6ms
|
233
|
-
|
234
|
-
ActionView::Template::Error (undefined method `output_buffer=' for #<ActionView::Helpers::DateTimeSelector:0x007ff8eeaecf10>):
|
235
|
-
21: </div>
|
236
|
-
22: <div class="field">
|
237
|
-
23: <%= f.label :datetimed_at %><br>
|
238
|
-
24: <%= f.datetime_select :datetimed_at, use_separators: { inline: true } %>
|
239
|
-
25: </div>
|
240
|
-
26: <div class="actions">
|
241
|
-
27: <%= f.submit %>
|
242
|
-
app/views/samples/_form.html.erb:24:in `block in _app_views_samples__form_html_erb__3055136187564476082_70353565935900'
|
243
|
-
app/views/samples/_form.html.erb:1:in `_app_views_samples__form_html_erb__3055136187564476082_70353565935900'
|
244
|
-
app/views/samples/new.html.erb:3:in `_app_views_samples_new_html_erb__3692481611459423854_70353569913840'
|
245
|
-
|
246
|
-
|
247
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (9.2ms)
|
248
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
|
249
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
|
250
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (23.1ms)
|
251
|
-
|
252
|
-
|
253
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 15:45:29 +0900
|
254
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
255
|
-
Processing by SamplesController#new as HTML
|
256
|
-
Rendered samples/_form.html.erb (34.4ms)
|
257
|
-
Rendered samples/new.html.erb within layouts/application (37.3ms)
|
258
|
-
Completed 200 OK in 55ms (Views: 49.9ms | ActiveRecord: 0.3ms)
|
259
|
-
|
260
|
-
|
261
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 15:45:29 +0900
|
262
|
-
|
263
|
-
|
264
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 15:45:29 +0900
|
265
|
-
|
266
|
-
|
267
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 15:47:41 +0900
|
268
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
269
|
-
Processing by SamplesController#new as HTML
|
270
|
-
Rendered samples/_form.html.erb (33.9ms)
|
271
|
-
Rendered samples/new.html.erb within layouts/application (37.1ms)
|
272
|
-
Completed 200 OK in 54ms (Views: 49.7ms | ActiveRecord: 0.3ms)
|
273
|
-
|
274
|
-
|
275
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 15:47:41 +0900
|
276
|
-
|
277
|
-
|
278
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 15:47:41 +0900
|
279
|
-
|
280
|
-
|
281
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 15:50:11 +0900
|
282
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
283
|
-
Processing by SamplesController#new as HTML
|
284
|
-
Rendered samples/_form.html.erb (19.9ms)
|
285
|
-
Rendered samples/new.html.erb within layouts/application (23.9ms)
|
286
|
-
Completed 500 Internal Server Error in 36ms
|
287
|
-
|
288
|
-
ActionView::Template::Error (undefined method `[]' for true:TrueClass):
|
289
|
-
17: </div>
|
290
|
-
18: <div class="field">
|
291
|
-
19: <%= f.label :dated_at %><br>
|
292
|
-
20: <%= f.date_select :dated_at, use_month_numbers: true, use_separators: true %>
|
293
|
-
21: </div>
|
294
|
-
22: <div class="field">
|
295
|
-
23: <%= f.label :datetimed_at %><br>
|
296
|
-
app/views/samples/_form.html.erb:20:in `block in _app_views_samples__form_html_erb__1273423591495187721_70225376375520'
|
297
|
-
app/views/samples/_form.html.erb:1:in `_app_views_samples__form_html_erb__1273423591495187721_70225376375520'
|
298
|
-
app/views/samples/new.html.erb:3:in `_app_views_samples_new_html_erb__193190086286835264_70225376536060'
|
299
|
-
|
300
|
-
|
301
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.5ms)
|
302
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms)
|
303
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.0ms)
|
304
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (28.0ms)
|
305
|
-
|
306
|
-
|
307
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 15:50:23 +0900
|
308
|
-
Processing by SamplesController#new as HTML
|
309
|
-
Rendered samples/_form.html.erb (8.5ms)
|
310
|
-
Rendered samples/new.html.erb within layouts/application (9.2ms)
|
311
|
-
Completed 500 Internal Server Error in 11ms
|
312
|
-
|
313
|
-
ActionView::Template::Error (undefined method `[]' for true:TrueClass):
|
314
|
-
17: </div>
|
315
|
-
18: <div class="field">
|
316
|
-
19: <%= f.label :dated_at %><br>
|
317
|
-
20: <%= f.date_select :dated_at, use_month_numbers: true, use_separators: true %>
|
318
|
-
21: </div>
|
319
|
-
22: <div class="field">
|
320
|
-
23: <%= f.label :datetimed_at %><br>
|
321
|
-
app/views/samples/_form.html.erb:20:in `block in _app_views_samples__form_html_erb__1273423591495187721_70225376375520'
|
322
|
-
app/views/samples/_form.html.erb:1:in `_app_views_samples__form_html_erb__1273423591495187721_70225376375520'
|
323
|
-
app/views/samples/new.html.erb:3:in `_app_views_samples_new_html_erb__193190086286835264_70225376536060'
|
324
|
-
|
325
|
-
|
326
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.3ms)
|
327
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms)
|
328
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
|
329
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (20.0ms)
|
330
|
-
|
331
|
-
|
332
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 15:51:35 +0900
|
333
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
334
|
-
Processing by SamplesController#new as HTML
|
335
|
-
Rendered samples/_form.html.erb (21.3ms)
|
336
|
-
Rendered samples/new.html.erb within layouts/application (24.5ms)
|
337
|
-
Completed 500 Internal Server Error in 37ms
|
338
|
-
|
339
|
-
ActionView::Template::Error (undefined method `[]' for true:TrueClass):
|
340
|
-
17: </div>
|
341
|
-
18: <div class="field">
|
342
|
-
19: <%= f.label :dated_at %><br>
|
343
|
-
20: <%= f.date_select :dated_at, use_month_numbers: true, use_separators: true %>
|
344
|
-
21: </div>
|
345
|
-
22: <div class="field">
|
346
|
-
23: <%= f.label :datetimed_at %><br>
|
347
|
-
app/views/samples/_form.html.erb:20:in `block in _app_views_samples__form_html_erb___945615783954649726_70297136865740'
|
348
|
-
app/views/samples/_form.html.erb:1:in `_app_views_samples__form_html_erb___945615783954649726_70297136865740'
|
349
|
-
app/views/samples/new.html.erb:3:in `_app_views_samples_new_html_erb__1817962510688383407_70297148612320'
|
350
|
-
|
351
|
-
|
352
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.9ms)
|
353
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms)
|
354
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.6ms)
|
355
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (29.3ms)
|
356
|
-
|
357
|
-
|
358
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 15:53:10 +0900
|
359
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
360
|
-
Processing by SamplesController#new as HTML
|
361
|
-
Rendered samples/_form.html.erb (32.3ms)
|
362
|
-
Rendered samples/new.html.erb within layouts/application (36.0ms)
|
363
|
-
Completed 200 OK in 56ms (Views: 50.6ms | ActiveRecord: 0.3ms)
|
364
|
-
|
365
|
-
|
366
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 15:53:10 +0900
|
367
|
-
|
368
|
-
|
369
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 15:53:10 +0900
|
370
|
-
|
371
|
-
|
372
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 15:56:49 +0900
|
373
|
-
Processing by SamplesController#new as HTML
|
374
|
-
Rendered samples/_form.html.erb (5.9ms)
|
375
|
-
Rendered samples/new.html.erb within layouts/application (6.6ms)
|
376
|
-
Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
|
377
|
-
|
378
|
-
|
379
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 15:56:49 +0900
|
380
|
-
|
381
|
-
|
382
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 15:56:49 +0900
|
383
|
-
|
384
|
-
|
385
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 15:57:48 +0900
|
386
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
387
|
-
Processing by SamplesController#new as HTML
|
388
|
-
Rendered samples/_form.html.erb (32.5ms)
|
389
|
-
Rendered samples/new.html.erb within layouts/application (35.7ms)
|
390
|
-
Completed 200 OK in 55ms (Views: 49.5ms | ActiveRecord: 0.3ms)
|
391
|
-
|
392
|
-
|
393
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 15:57:49 +0900
|
394
|
-
|
395
|
-
|
396
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 15:57:49 +0900
|
397
|
-
|
398
|
-
|
399
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 15:57:51 +0900
|
400
|
-
Processing by SamplesController#new as HTML
|
401
|
-
Rendered samples/_form.html.erb (4.8ms)
|
402
|
-
Rendered samples/new.html.erb within layouts/application (5.3ms)
|
403
|
-
Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
|
404
|
-
|
405
|
-
|
406
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 15:57:51 +0900
|
407
|
-
|
408
|
-
|
409
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 15:57:51 +0900
|
410
|
-
|
411
|
-
|
412
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 16:03:51 +0900
|
413
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
414
|
-
Processing by SamplesController#new as HTML
|
415
|
-
Rendered samples/_form.html.erb (25.2ms)
|
416
|
-
Rendered samples/new.html.erb within layouts/application (29.8ms)
|
417
|
-
Completed 500 Internal Server Error in 43ms
|
418
|
-
|
419
|
-
ActionView::Template::Error (undefined local variable or method `type' for #<ActionView::Helpers::DateTimeSelector:0x007f88ce9c0b90>):
|
420
|
-
17: </div>
|
421
|
-
18: <div class="field">
|
422
|
-
19: <%= f.label :dated_at %><br>
|
423
|
-
20: <%= f.date_select :dated_at, use_month_numbers: true, use_separators: { wrapper_select_tag: true } %>
|
424
|
-
21: </div>
|
425
|
-
22: <div class="field">
|
426
|
-
23: <%= f.label :datetimed_at %><br>
|
427
|
-
app/views/samples/_form.html.erb:20:in `block in _app_views_samples__form_html_erb___2119419681468642192_70112753748060'
|
428
|
-
app/views/samples/_form.html.erb:1:in `_app_views_samples__form_html_erb___2119419681468642192_70112753748060'
|
429
|
-
app/views/samples/new.html.erb:3:in `_app_views_samples_new_html_erb__3077846546798850405_70112779516300'
|
430
|
-
|
431
|
-
|
432
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (10.0ms)
|
433
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms)
|
434
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.0ms)
|
435
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (33.5ms)
|
436
|
-
|
437
|
-
|
438
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 16:04:16 +0900
|
439
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
440
|
-
Processing by SamplesController#new as HTML
|
441
|
-
Rendered samples/_form.html.erb (33.8ms)
|
442
|
-
Rendered samples/new.html.erb within layouts/application (36.7ms)
|
443
|
-
Completed 200 OK in 57ms (Views: 51.0ms | ActiveRecord: 0.4ms)
|
444
|
-
|
445
|
-
|
446
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 16:04:18 +0900
|
447
|
-
Processing by SamplesController#new as HTML
|
448
|
-
Rendered samples/_form.html.erb (5.8ms)
|
449
|
-
Rendered samples/new.html.erb within layouts/application (6.5ms)
|
450
|
-
Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)
|
451
|
-
|
452
|
-
|
453
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 16:04:18 +0900
|
454
|
-
|
455
|
-
|
456
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 16:04:18 +0900
|
457
|
-
|
458
|
-
|
459
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 16:04:21 +0900
|
460
|
-
Processing by SamplesController#new as HTML
|
461
|
-
Rendered samples/_form.html.erb (5.3ms)
|
462
|
-
Rendered samples/new.html.erb within layouts/application (5.9ms)
|
463
|
-
Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.0ms)
|
464
|
-
|
465
|
-
|
466
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 16:13:41 +0900
|
467
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
468
|
-
Processing by SamplesController#new as HTML
|
469
|
-
Rendered samples/_form.html.erb (31.7ms)
|
470
|
-
Rendered samples/new.html.erb within layouts/application (34.9ms)
|
471
|
-
Completed 200 OK in 52ms (Views: 47.0ms | ActiveRecord: 0.3ms)
|
472
|
-
|
473
|
-
|
474
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 16:13:41 +0900
|
475
|
-
|
476
|
-
|
477
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 16:13:41 +0900
|
478
|
-
|
479
|
-
|
480
|
-
Started POST "/samples" for 127.0.0.1 at 2015-01-05 16:14:00 +0900
|
481
|
-
Processing by SamplesController#create as HTML
|
482
|
-
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pmR6iiO9d7dl09hWl5WZxvgqPhxHZVHgamwie9rKZNsTikKKu3k31tFnxOLHbNBSIVCJsM1aqVU1HuwWUGMc0A==", "sample"=>{"name"=>"asdfasd", "dated_at(1i)"=>"2013", "dated_at(2i)"=>"5", "dated_at(3i)"=>"10", "datetimed_at(1i)"=>"2015", "datetimed_at(2i)"=>"6", "datetimed_at(3i)"=>"5", "datetimed_at(4i)"=>"07", "datetimed_at(5i)"=>"13"}, "commit"=>"登録する"}
|
483
|
-
[1m[35m (0.1ms)[0m begin transaction
|
484
|
-
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "samples" ("name", "dated_at", "datetimed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "asdfasd"], ["dated_at", "2013-05-10"], ["datetimed_at", "2015-06-05 07:13:00.000000"], ["created_at", "2015-01-05 07:14:00.645346"], ["updated_at", "2015-01-05 07:14:00.645346"]]
|
485
|
-
[1m[35m (1.5ms)[0m commit transaction
|
486
|
-
Redirected to http://0.0.0.0:3000/samples/1
|
487
|
-
Completed 302 Found in 11ms (ActiveRecord: 2.0ms)
|
488
|
-
|
489
|
-
|
490
|
-
Started GET "/samples/1" for 127.0.0.1 at 2015-01-05 16:14:00 +0900
|
491
|
-
Processing by SamplesController#show as HTML
|
492
|
-
Parameters: {"id"=>"1"}
|
493
|
-
[1m[36mSample Load (0.2ms)[0m [1mSELECT "samples".* FROM "samples" WHERE "samples"."id" = ? LIMIT 1[0m [["id", 1]]
|
494
|
-
Rendered samples/show.html.erb within layouts/application (2.0ms)
|
495
|
-
Completed 200 OK in 16ms (Views: 5.0ms | ActiveRecord: 0.2ms)
|
496
|
-
|
497
|
-
|
498
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 16:14:00 +0900
|
499
|
-
|
500
|
-
|
501
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 16:14:00 +0900
|
502
|
-
|
503
|
-
|
504
|
-
Started GET "/samples" for 127.0.0.1 at 2015-01-05 16:14:02 +0900
|
505
|
-
Processing by SamplesController#index as HTML
|
506
|
-
[1m[35mSample Load (0.2ms)[0m SELECT "samples".* FROM "samples"
|
507
|
-
Rendered samples/index.html.erb within layouts/application (2.5ms)
|
508
|
-
Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.2ms)
|
509
|
-
|
510
|
-
|
511
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 16:14:03 +0900
|
512
|
-
|
513
|
-
|
514
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 16:14:03 +0900
|
515
|
-
|
516
|
-
|
517
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 16:16:03 +0900
|
518
|
-
Processing by SamplesController#new as HTML
|
519
|
-
Rendered samples/_form.html.erb (5.6ms)
|
520
|
-
Rendered samples/new.html.erb within layouts/application (6.3ms)
|
521
|
-
Completed 500 Internal Server Error in 14ms
|
522
|
-
|
523
|
-
ActionView::Template::Error (undefined method `birthday' for #<Sample:0x007fad6c5d2250>):
|
524
|
-
19: <%= f.label :dated_at %><br>
|
525
|
-
20: <%= f.date_select :dated_at, use_month_numbers: true, use_separators: true %>
|
526
|
-
21: <br>
|
527
|
-
22: <%= f.date_select :birthday, use_month_numbers: true, use_separators: { wrapper_select_tag: true } %>
|
528
|
-
23: <br>
|
529
|
-
24: </div>
|
530
|
-
25: <div class="field">
|
531
|
-
app/views/samples/_form.html.erb:22:in `block in _app_views_samples__form_html_erb___1792894619258981234_70191411890960'
|
532
|
-
app/views/samples/_form.html.erb:1:in `_app_views_samples__form_html_erb___1792894619258981234_70191411890960'
|
533
|
-
app/views/samples/new.html.erb:3:in `_app_views_samples_new_html_erb__562772030393411426_70191432390840'
|
534
|
-
|
535
|
-
|
536
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.8ms)
|
537
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms)
|
538
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
|
539
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (20.5ms)
|
540
|
-
|
541
|
-
|
542
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 16:16:25 +0900
|
543
|
-
Processing by SamplesController#new as HTML
|
544
|
-
Rendered samples/_form.html.erb (8.1ms)
|
545
|
-
Rendered samples/new.html.erb within layouts/application (8.8ms)
|
546
|
-
Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.0ms)
|
547
|
-
|
548
|
-
|
549
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 16:16:25 +0900
|
550
|
-
|
551
|
-
|
552
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 16:16:25 +0900
|
553
|
-
|
554
|
-
|
555
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 16:56:59 +0900
|
556
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
557
|
-
Processing by SamplesController#new as HTML
|
558
|
-
Rendered samples/_form.html.erb (38.6ms)
|
559
|
-
Rendered samples/new.html.erb within layouts/application (43.7ms)
|
560
|
-
Completed 200 OK in 65ms (Views: 59.3ms | ActiveRecord: 0.3ms)
|
561
|
-
|
562
|
-
|
563
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 16:56:59 +0900
|
564
|
-
|
565
|
-
|
566
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 16:56:59 +0900
|
567
|
-
|
568
|
-
|
569
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 16:57:14 +0900
|
570
|
-
Processing by SamplesController#new as HTML
|
571
|
-
Rendered samples/_form.html.erb (7.5ms)
|
572
|
-
Rendered samples/new.html.erb within layouts/application (8.2ms)
|
573
|
-
Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
|
574
|
-
|
575
|
-
|
576
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 16:57:14 +0900
|
577
|
-
|
578
|
-
|
579
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 16:57:14 +0900
|
580
|
-
|
581
|
-
|
582
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 16:57:30 +0900
|
583
|
-
Processing by SamplesController#new as HTML
|
584
|
-
Rendered samples/_form.html.erb (1.0ms)
|
585
|
-
Rendered samples/new.html.erb within layouts/application (3.2ms)
|
586
|
-
Completed 500 Internal Server Error in 5ms
|
587
|
-
|
588
|
-
SyntaxError (/Users/hiro/Desktop/date_select_separator/test/dummy/app/views/samples/_form.html.erb:22: syntax error, unexpected ')', expecting '}'
|
589
|
-
... { class_prefix: 'aaaaaaaa' } );@output_buffer.safe_append='
|
590
|
-
... ^
|
591
|
-
/Users/hiro/Desktop/date_select_separator/test/dummy/app/views/samples/_form.html.erb:32: syntax error, unexpected keyword_end, expecting ')'
|
592
|
-
'.freeze; end
|
593
|
-
^
|
594
|
-
/Users/hiro/Desktop/date_select_separator/test/dummy/app/views/samples/_form.html.erb:34: syntax error, unexpected keyword_ensure, expecting ')'
|
595
|
-
/Users/hiro/Desktop/date_select_separator/test/dummy/app/views/samples/_form.html.erb:36: syntax error, unexpected keyword_end, expecting ')'):
|
596
|
-
app/views/samples/_form.html.erb:22: syntax error, unexpected ')', expecting '}'
|
597
|
-
app/views/samples/_form.html.erb:32: syntax error, unexpected keyword_end, expecting ')'
|
598
|
-
app/views/samples/_form.html.erb:34: syntax error, unexpected keyword_ensure, expecting ')'
|
599
|
-
app/views/samples/_form.html.erb:36: syntax error, unexpected keyword_end, expecting ')'
|
600
|
-
app/views/samples/new.html.erb:3:in `_app_views_samples_new_html_erb___1779147394381595791_70336196696280'
|
601
|
-
|
602
|
-
|
603
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.4ms)
|
604
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms)
|
605
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
606
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (22.6ms)
|
607
|
-
|
608
|
-
|
609
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 17:02:03 +0900
|
610
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
611
|
-
Processing by SamplesController#new as HTML
|
612
|
-
Rendered samples/_form.html.erb (0.7ms)
|
613
|
-
Rendered samples/new.html.erb within layouts/application (3.6ms)
|
614
|
-
Completed 500 Internal Server Error in 15ms
|
615
|
-
|
616
|
-
SyntaxError (/Users/hiro/Desktop/date_select_separator/test/dummy/app/views/samples/_form.html.erb:22: syntax error, unexpected ')', expecting '}'
|
617
|
-
... { class_prefix: 'aaaaaaaa' } );@output_buffer.safe_append='
|
618
|
-
... ^
|
619
|
-
/Users/hiro/Desktop/date_select_separator/test/dummy/app/views/samples/_form.html.erb:32: syntax error, unexpected keyword_end, expecting ')'
|
620
|
-
'.freeze; end
|
621
|
-
^
|
622
|
-
/Users/hiro/Desktop/date_select_separator/test/dummy/app/views/samples/_form.html.erb:34: syntax error, unexpected keyword_ensure, expecting ')'
|
623
|
-
/Users/hiro/Desktop/date_select_separator/test/dummy/app/views/samples/_form.html.erb:36: syntax error, unexpected keyword_end, expecting ')'):
|
624
|
-
app/views/samples/_form.html.erb:22: syntax error, unexpected ')', expecting '}'
|
625
|
-
app/views/samples/_form.html.erb:32: syntax error, unexpected keyword_end, expecting ')'
|
626
|
-
app/views/samples/_form.html.erb:34: syntax error, unexpected keyword_ensure, expecting ')'
|
627
|
-
app/views/samples/_form.html.erb:36: syntax error, unexpected keyword_end, expecting ')'
|
628
|
-
app/views/samples/new.html.erb:3:in `_app_views_samples_new_html_erb__1448174338180891336_70311510199520'
|
629
|
-
|
630
|
-
|
631
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.0ms)
|
632
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms)
|
633
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.0ms)
|
634
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (30.4ms)
|
635
|
-
|
636
|
-
|
637
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 17:02:05 +0900
|
638
|
-
Processing by SamplesController#new as HTML
|
639
|
-
Rendered samples/_form.html.erb (1.1ms)
|
640
|
-
Rendered samples/new.html.erb within layouts/application (1.6ms)
|
641
|
-
Completed 500 Internal Server Error in 3ms
|
642
|
-
|
643
|
-
SyntaxError (/Users/hiro/Desktop/date_select_separator/test/dummy/app/views/samples/_form.html.erb:22: syntax error, unexpected ')', expecting '}'
|
644
|
-
... { class_prefix: 'aaaaaaaa' } );@output_buffer.safe_append='
|
645
|
-
... ^
|
646
|
-
/Users/hiro/Desktop/date_select_separator/test/dummy/app/views/samples/_form.html.erb:32: syntax error, unexpected keyword_end, expecting ')'
|
647
|
-
'.freeze; end
|
648
|
-
^
|
649
|
-
/Users/hiro/Desktop/date_select_separator/test/dummy/app/views/samples/_form.html.erb:34: syntax error, unexpected keyword_ensure, expecting ')'
|
650
|
-
/Users/hiro/Desktop/date_select_separator/test/dummy/app/views/samples/_form.html.erb:36: syntax error, unexpected keyword_end, expecting ')'):
|
651
|
-
app/views/samples/_form.html.erb:22: syntax error, unexpected ')', expecting '}'
|
652
|
-
app/views/samples/_form.html.erb:32: syntax error, unexpected keyword_end, expecting ')'
|
653
|
-
app/views/samples/_form.html.erb:34: syntax error, unexpected keyword_ensure, expecting ')'
|
654
|
-
app/views/samples/_form.html.erb:36: syntax error, unexpected keyword_end, expecting ')'
|
655
|
-
app/views/samples/new.html.erb:3:in `_app_views_samples_new_html_erb__1448174338180891336_70311510199520'
|
656
|
-
|
657
|
-
|
658
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.7ms)
|
659
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms)
|
660
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
661
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (22.2ms)
|
662
|
-
|
663
|
-
|
664
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 17:02:52 +0900
|
665
|
-
Processing by SamplesController#new as HTML
|
666
|
-
Rendered samples/_form.html.erb (0.8ms)
|
667
|
-
Rendered samples/new.html.erb within layouts/application (1.3ms)
|
668
|
-
Completed 500 Internal Server Error in 3ms
|
669
|
-
|
670
|
-
SyntaxError (/Users/hiro/Desktop/date_select_separator/test/dummy/app/views/samples/_form.html.erb:22: syntax error, unexpected ')', expecting '}'
|
671
|
-
... { class_prefix: 'aaaaaaaa' } );@output_buffer.safe_append='
|
672
|
-
... ^
|
673
|
-
/Users/hiro/Desktop/date_select_separator/test/dummy/app/views/samples/_form.html.erb:32: syntax error, unexpected keyword_end, expecting ')'
|
674
|
-
'.freeze; end
|
675
|
-
^
|
676
|
-
/Users/hiro/Desktop/date_select_separator/test/dummy/app/views/samples/_form.html.erb:34: syntax error, unexpected keyword_ensure, expecting ')'
|
677
|
-
/Users/hiro/Desktop/date_select_separator/test/dummy/app/views/samples/_form.html.erb:36: syntax error, unexpected keyword_end, expecting ')'):
|
678
|
-
app/views/samples/_form.html.erb:22: syntax error, unexpected ')', expecting '}'
|
679
|
-
app/views/samples/_form.html.erb:32: syntax error, unexpected keyword_end, expecting ')'
|
680
|
-
app/views/samples/_form.html.erb:34: syntax error, unexpected keyword_ensure, expecting ')'
|
681
|
-
app/views/samples/_form.html.erb:36: syntax error, unexpected keyword_end, expecting ')'
|
682
|
-
app/views/samples/new.html.erb:3:in `_app_views_samples_new_html_erb__1448174338180891336_70311510199520'
|
683
|
-
|
684
|
-
|
685
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.9ms)
|
686
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms)
|
687
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
688
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (21.5ms)
|
689
|
-
|
690
|
-
|
691
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 17:03:15 +0900
|
692
|
-
Processing by SamplesController#new as HTML
|
693
|
-
Rendered samples/_form.html.erb (34.9ms)
|
694
|
-
Rendered samples/new.html.erb within layouts/application (35.9ms)
|
695
|
-
Completed 200 OK in 45ms (Views: 44.6ms | ActiveRecord: 0.0ms)
|
696
|
-
|
697
|
-
|
698
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 17:03:15 +0900
|
699
|
-
|
700
|
-
|
701
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 17:03:15 +0900
|
702
|
-
|
703
|
-
|
704
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 17:05:56 +0900
|
705
|
-
Processing by SamplesController#new as HTML
|
706
|
-
Rendered samples/_form.html.erb (8.1ms)
|
707
|
-
Rendered samples/new.html.erb within layouts/application (9.2ms)
|
708
|
-
Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms)
|
709
|
-
|
710
|
-
|
711
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 17:06:01 +0900
|
712
|
-
Processing by SamplesController#new as HTML
|
713
|
-
Rendered samples/_form.html.erb (7.8ms)
|
714
|
-
Rendered samples/new.html.erb within layouts/application (8.6ms)
|
715
|
-
Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms)
|
716
|
-
|
717
|
-
|
718
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 17:06:01 +0900
|
719
|
-
|
720
|
-
|
721
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 17:06:01 +0900
|
722
|
-
|
723
|
-
|
724
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 17:06:06 +0900
|
725
|
-
|
726
|
-
|
727
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 17:06:51 +0900
|
728
|
-
Processing by SamplesController#new as HTML
|
729
|
-
Rendered samples/_form.html.erb (10.6ms)
|
730
|
-
Rendered samples/new.html.erb within layouts/application (11.7ms)
|
731
|
-
Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms)
|
732
|
-
|
733
|
-
|
734
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 17:06:51 +0900
|
735
|
-
|
736
|
-
|
737
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 17:06:51 +0900
|
738
|
-
|
739
|
-
|
740
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 17:09:55 +0900
|
741
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
742
|
-
Processing by SamplesController#new as HTML
|
743
|
-
Rendered samples/_form.html.erb (33.0ms)
|
744
|
-
Rendered samples/new.html.erb within layouts/application (36.2ms)
|
745
|
-
Completed 200 OK in 54ms (Views: 49.1ms | ActiveRecord: 0.3ms)
|
746
|
-
|
747
|
-
|
748
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 17:09:55 +0900
|
749
|
-
|
750
|
-
|
751
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 17:09:55 +0900
|
752
|
-
|
753
|
-
|
754
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 17:13:32 +0900
|
755
|
-
Processing by SamplesController#new as HTML
|
756
|
-
Rendered samples/_form.html.erb (9.5ms)
|
757
|
-
Rendered samples/new.html.erb within layouts/application (10.1ms)
|
758
|
-
Completed 500 Internal Server Error in 13ms
|
759
|
-
|
760
|
-
ActionView::Template::Error (no implicit conversion of true into Hash):
|
761
|
-
23: <%= f.date_select :dated_at, use_month_numbers: true, use_separators: { class_prefix: 'unk', wrapper_select_tag: { html_tag: 'span', class_prefix: 'aaaaaaaa' } } %>
|
762
|
-
24: <br>
|
763
|
-
25: <br>
|
764
|
-
26: <%= f.date_select :dated_at, use_month_numbers: true, use_separators: { class_prefix: 'unk', wrapper_select_tag: true } %>
|
765
|
-
27: </div>
|
766
|
-
28: <div class="field">
|
767
|
-
29: <%= f.label :datetimed_at %><br>
|
768
|
-
app/views/samples/_form.html.erb:26:in `block in _app_views_samples__form_html_erb___3644648758788799479_70134160787100'
|
769
|
-
app/views/samples/_form.html.erb:1:in `_app_views_samples__form_html_erb___3644648758788799479_70134160787100'
|
770
|
-
app/views/samples/new.html.erb:3:in `_app_views_samples_new_html_erb___286157132841112863_70134198931660'
|
771
|
-
|
772
|
-
|
773
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.0ms)
|
774
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms)
|
775
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
|
776
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (22.8ms)
|
777
|
-
|
778
|
-
|
779
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 17:13:54 +0900
|
780
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
781
|
-
Processing by SamplesController#new as HTML
|
782
|
-
Rendered samples/_form.html.erb (22.3ms)
|
783
|
-
Rendered samples/new.html.erb within layouts/application (25.7ms)
|
784
|
-
Completed 500 Internal Server Error in 39ms
|
785
|
-
|
786
|
-
ActionView::Template::Error (undefined local variable or method `separators' for #<ActionView::Helpers::DateTimeSelector:0x007fd3cd10b618>):
|
787
|
-
20: <%= f.date_select :dated_at, use_month_numbers: true, use_separators: true %>
|
788
|
-
21: <br>
|
789
|
-
22: <br>
|
790
|
-
23: <%= f.date_select :dated_at, use_month_numbers: true, use_separators: { class_prefix: 'unk', wrapper_select_tag: { html_tag: 'span', class_prefix: 'aaaaaaaa' } } %>
|
791
|
-
24: <br>
|
792
|
-
25: <br>
|
793
|
-
26: <%= f.date_select :dated_at, use_month_numbers: true, use_separators: { class_prefix: 'unk', wrapper_select_tag: true } %>
|
794
|
-
app/views/samples/_form.html.erb:23:in `block in _app_views_samples__form_html_erb___3666399884732565185_70273803932600'
|
795
|
-
app/views/samples/_form.html.erb:1:in `_app_views_samples__form_html_erb___3666399884732565185_70273803932600'
|
796
|
-
app/views/samples/new.html.erb:3:in `_app_views_samples_new_html_erb__3543366189154084241_70273801561760'
|
797
|
-
|
798
|
-
|
799
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.2ms)
|
800
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms)
|
801
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (23.1ms)
|
802
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (43.4ms)
|
803
|
-
|
804
|
-
|
805
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 17:16:00 +0900
|
806
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
807
|
-
Processing by SamplesController#new as HTML
|
808
|
-
Rendered samples/_form.html.erb (35.3ms)
|
809
|
-
Rendered samples/new.html.erb within layouts/application (38.5ms)
|
810
|
-
Completed 200 OK in 55ms (Views: 50.5ms | ActiveRecord: 0.3ms)
|
811
|
-
|
812
|
-
|
813
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 17:16:00 +0900
|
814
|
-
|
815
|
-
|
816
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 17:16:00 +0900
|
817
|
-
|
818
|
-
|
819
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 17:20:43 +0900
|
820
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
821
|
-
Processing by SamplesController#new as HTML
|
822
|
-
Rendered samples/_form.html.erb (34.7ms)
|
823
|
-
Rendered samples/new.html.erb within layouts/application (37.9ms)
|
824
|
-
Completed 200 OK in 56ms (Views: 50.3ms | ActiveRecord: 0.3ms)
|
825
|
-
|
826
|
-
|
827
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 17:20:44 +0900
|
828
|
-
|
829
|
-
|
830
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 17:20:44 +0900
|
831
|
-
|
832
|
-
|
833
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 17:29:29 +0900
|
834
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
835
|
-
Processing by SamplesController#new as HTML
|
836
|
-
Rendered samples/_form.html.erb (34.1ms)
|
837
|
-
Rendered samples/new.html.erb within layouts/application (37.9ms)
|
838
|
-
Completed 200 OK in 56ms (Views: 49.9ms | ActiveRecord: 0.4ms)
|
839
|
-
|
840
|
-
|
841
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 17:31:06 +0900
|
842
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
843
|
-
Processing by SamplesController#new as HTML
|
844
|
-
Rendered samples/_form.html.erb (34.3ms)
|
845
|
-
Rendered samples/new.html.erb within layouts/application (37.5ms)
|
846
|
-
Completed 200 OK in 58ms (Views: 52.4ms | ActiveRecord: 0.3ms)
|
847
|
-
|
848
|
-
|
849
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 17:31:32 +0900
|
850
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
851
|
-
Processing by SamplesController#new as HTML
|
852
|
-
Rendered samples/_form.html.erb (37.3ms)
|
853
|
-
Rendered samples/new.html.erb within layouts/application (40.4ms)
|
854
|
-
Completed 200 OK in 59ms (Views: 52.9ms | ActiveRecord: 0.3ms)
|
855
|
-
|
856
|
-
|
857
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 17:31:34 +0900
|
858
|
-
Processing by SamplesController#new as HTML
|
859
|
-
Rendered samples/_form.html.erb (7.6ms)
|
860
|
-
Rendered samples/new.html.erb within layouts/application (8.3ms)
|
861
|
-
Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
|
862
|
-
|
863
|
-
|
864
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 17:31:35 +0900
|
865
|
-
Processing by SamplesController#new as HTML
|
866
|
-
Rendered samples/_form.html.erb (8.4ms)
|
867
|
-
Rendered samples/new.html.erb within layouts/application (9.0ms)
|
868
|
-
Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.0ms)
|
869
|
-
|
870
|
-
|
871
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 17:31:35 +0900
|
872
|
-
|
873
|
-
|
874
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 17:31:35 +0900
|
875
|
-
|
876
|
-
|
877
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 17:38:44 +0900
|
878
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
879
|
-
Processing by SamplesController#new as HTML
|
880
|
-
Rendered samples/_form.html.erb (36.9ms)
|
881
|
-
Rendered samples/new.html.erb within layouts/application (40.3ms)
|
882
|
-
Completed 200 OK in 60ms (Views: 53.8ms | ActiveRecord: 0.3ms)
|
883
|
-
|
884
|
-
|
885
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 17:38:45 +0900
|
886
|
-
|
887
|
-
|
888
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 17:38:45 +0900
|
889
|
-
|
890
|
-
|
891
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-05 19:06:40 +0900
|
892
|
-
Processing by SamplesController#new as HTML
|
893
|
-
Rendered samples/_form.html.erb (16.7ms)
|
894
|
-
Rendered samples/new.html.erb within layouts/application (18.4ms)
|
895
|
-
Completed 200 OK in 23ms (Views: 22.9ms | ActiveRecord: 0.0ms)
|
896
|
-
|
897
|
-
|
898
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-05 19:06:41 +0900
|
899
|
-
|
900
|
-
|
901
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-05 19:06:41 +0900
|
902
|
-
|
903
|
-
|
904
|
-
Started GET "/" for 127.0.0.1 at 2015-01-06 11:26:12 +0900
|
905
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
906
|
-
Processing by SamplesController#index as HTML
|
907
|
-
[1m[35mSample Load (0.5ms)[0m SELECT "samples".* FROM "samples"
|
908
|
-
Rendered samples/index.html.erb within layouts/application (8.6ms)
|
909
|
-
Completed 200 OK in 39ms (Views: 36.1ms | ActiveRecord: 0.8ms)
|
910
|
-
|
911
|
-
|
912
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-06 11:26:12 +0900
|
913
|
-
|
914
|
-
|
915
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-06 11:26:12 +0900
|
916
|
-
|
917
|
-
|
918
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-06 11:26:14 +0900
|
919
|
-
Processing by SamplesController#new as HTML
|
920
|
-
Rendered samples/_form.html.erb (45.7ms)
|
921
|
-
Rendered samples/new.html.erb within layouts/application (50.6ms)
|
922
|
-
Completed 200 OK in 54ms (Views: 53.7ms | ActiveRecord: 0.0ms)
|
923
|
-
|
924
|
-
|
925
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-06 11:26:14 +0900
|
926
|
-
|
927
|
-
|
928
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-06 11:26:14 +0900
|
929
|
-
|
930
|
-
|
931
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-06 11:26:25 +0900
|
932
|
-
Processing by SamplesController#new as HTML
|
933
|
-
Rendered samples/_form.html.erb (14.3ms)
|
934
|
-
Rendered samples/new.html.erb within layouts/application (15.7ms)
|
935
|
-
Completed 200 OK in 20ms (Views: 19.8ms | ActiveRecord: 0.0ms)
|
936
|
-
|
937
|
-
|
938
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-06 11:26:26 +0900
|
939
|
-
|
940
|
-
|
941
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-06 11:26:26 +0900
|
942
|
-
|
943
|
-
|
944
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-06 11:26:33 +0900
|
945
|
-
Processing by SamplesController#new as HTML
|
946
|
-
Rendered samples/_form.html.erb (12.2ms)
|
947
|
-
Rendered samples/new.html.erb within layouts/application (13.1ms)
|
948
|
-
Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.0ms)
|
949
|
-
|
950
|
-
|
951
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-06 11:26:33 +0900
|
952
|
-
|
953
|
-
|
954
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-06 11:26:33 +0900
|
955
|
-
|
956
|
-
|
957
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-06 11:26:35 +0900
|
958
|
-
Processing by SamplesController#new as HTML
|
959
|
-
Rendered samples/_form.html.erb (10.6ms)
|
960
|
-
Rendered samples/new.html.erb within layouts/application (11.3ms)
|
961
|
-
Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.0ms)
|
962
|
-
|
963
|
-
|
964
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-06 11:26:35 +0900
|
965
|
-
|
966
|
-
|
967
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-06 11:26:35 +0900
|
968
|
-
|
969
|
-
|
970
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-06 11:26:42 +0900
|
971
|
-
Processing by SamplesController#new as HTML
|
972
|
-
Rendered samples/_form.html.erb (9.1ms)
|
973
|
-
Rendered samples/new.html.erb within layouts/application (10.0ms)
|
974
|
-
Completed 200 OK in 13ms (Views: 13.1ms | ActiveRecord: 0.0ms)
|
975
|
-
|
976
|
-
|
977
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-06 11:26:42 +0900
|
978
|
-
|
979
|
-
|
980
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-06 11:26:42 +0900
|
981
|
-
|
982
|
-
|
983
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-06 11:26:46 +0900
|
984
|
-
Processing by SamplesController#new as HTML
|
985
|
-
Rendered samples/_form.html.erb (12.8ms)
|
986
|
-
Rendered samples/new.html.erb within layouts/application (14.0ms)
|
987
|
-
Completed 200 OK in 17ms (Views: 17.0ms | ActiveRecord: 0.0ms)
|
988
|
-
|
989
|
-
|
990
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-06 11:26:46 +0900
|
991
|
-
|
992
|
-
|
993
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-06 11:26:46 +0900
|
994
|
-
|
995
|
-
|
996
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-06 11:27:53 +0900
|
997
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
998
|
-
Processing by SamplesController#new as HTML
|
999
|
-
Rendered samples/_form.html.erb (39.5ms)
|
1000
|
-
Rendered samples/new.html.erb within layouts/application (43.8ms)
|
1001
|
-
Completed 200 OK in 67ms (Views: 59.3ms | ActiveRecord: 0.5ms)
|
1002
|
-
|
1003
|
-
|
1004
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-06 11:27:53 +0900
|
1005
|
-
|
1006
|
-
|
1007
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-06 11:27:53 +0900
|
1008
|
-
|
1009
|
-
|
1010
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-06 11:28:17 +0900
|
1011
|
-
Processing by SamplesController#new as HTML
|
1012
|
-
Rendered samples/_form.html.erb (9.0ms)
|
1013
|
-
Rendered samples/new.html.erb within layouts/application (9.7ms)
|
1014
|
-
Completed 200 OK in 12ms (Views: 12.1ms | ActiveRecord: 0.0ms)
|
1015
|
-
|
1016
|
-
|
1017
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-06 11:28:17 +0900
|
1018
|
-
|
1019
|
-
|
1020
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-06 11:28:17 +0900
|
1021
|
-
|
1022
|
-
|
1023
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-06 11:34:52 +0900
|
1024
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1025
|
-
Processing by SamplesController#new as HTML
|
1026
|
-
Rendered samples/_form.html.erb (43.0ms)
|
1027
|
-
Rendered samples/new.html.erb within layouts/application (47.9ms)
|
1028
|
-
Completed 200 OK in 69ms (Views: 63.5ms | ActiveRecord: 0.3ms)
|
1029
|
-
|
1030
|
-
|
1031
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-06 11:34:52 +0900
|
1032
|
-
|
1033
|
-
|
1034
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-06 11:34:52 +0900
|
1035
|
-
|
1036
|
-
|
1037
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-06 11:47:46 +0900
|
1038
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1039
|
-
Processing by SamplesController#new as HTML
|
1040
|
-
Rendered samples/_form.html.erb (36.1ms)
|
1041
|
-
Rendered samples/new.html.erb within layouts/application (40.8ms)
|
1042
|
-
Completed 200 OK in 64ms (Views: 58.2ms | ActiveRecord: 0.4ms)
|
1043
|
-
|
1044
|
-
|
1045
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-06 11:47:46 +0900
|
1046
|
-
|
1047
|
-
|
1048
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-06 11:47:46 +0900
|
1049
|
-
|
1050
|
-
|
1051
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-06 11:48:03 +0900
|
1052
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1053
|
-
Processing by SamplesController#new as HTML
|
1054
|
-
Rendered samples/_form.html.erb (20.4ms)
|
1055
|
-
Rendered samples/new.html.erb within layouts/application (28.7ms)
|
1056
|
-
Completed 500 Internal Server Error in 55ms
|
1057
|
-
|
1058
|
-
ActionView::Template::Error (undefined method `map' for "translation missing: ja.date.order":String):
|
1059
|
-
17: </div>
|
1060
|
-
18: <div class="field">
|
1061
|
-
19: <%= f.label :dated_at %><br>
|
1062
|
-
20: <%= f.date_select :dated_at, use_month_numbers: true, use_separators: true %>
|
1063
|
-
21: <br>
|
1064
|
-
22: <br>
|
1065
|
-
23: <%= f.date_select :dated_at, use_month_numbers: true, use_separators: { class_prefix: 'unk', wrapper_select_tag: { html_tag: 'span', class_prefix: 'aaaaaaaa' } } %>
|
1066
|
-
app/views/samples/_form.html.erb:20:in `block in _app_views_samples__form_html_erb__2815077586060206422_70246701957880'
|
1067
|
-
app/views/samples/_form.html.erb:1:in `_app_views_samples__form_html_erb__2815077586060206422_70246701957880'
|
1068
|
-
app/views/samples/new.html.erb:3:in `_app_views_samples_new_html_erb__2609132420623687251_70246717711100'
|
1069
|
-
|
1070
|
-
|
1071
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (9.3ms)
|
1072
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (31.6ms)
|
1073
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (11.4ms)
|
1074
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (66.9ms)
|
1075
|
-
|
1076
|
-
|
1077
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-06 11:48:03 +0900
|
1078
|
-
Processing by SamplesController#new as HTML
|
1079
|
-
Rendered samples/_form.html.erb (1.4ms)
|
1080
|
-
Rendered samples/new.html.erb within layouts/application (1.8ms)
|
1081
|
-
Completed 500 Internal Server Error in 3ms
|
1082
|
-
|
1083
|
-
ActionView::Template::Error (undefined method `map' for "translation missing: ja.date.order":String):
|
1084
|
-
17: </div>
|
1085
|
-
18: <div class="field">
|
1086
|
-
19: <%= f.label :dated_at %><br>
|
1087
|
-
20: <%= f.date_select :dated_at, use_month_numbers: true, use_separators: true %>
|
1088
|
-
21: <br>
|
1089
|
-
22: <br>
|
1090
|
-
23: <%= f.date_select :dated_at, use_month_numbers: true, use_separators: { class_prefix: 'unk', wrapper_select_tag: { html_tag: 'span', class_prefix: 'aaaaaaaa' } } %>
|
1091
|
-
app/views/samples/_form.html.erb:20:in `block in _app_views_samples__form_html_erb__2815077586060206422_70246701957880'
|
1092
|
-
app/views/samples/_form.html.erb:1:in `_app_views_samples__form_html_erb__2815077586060206422_70246701957880'
|
1093
|
-
app/views/samples/new.html.erb:3:in `_app_views_samples_new_html_erb__2609132420623687251_70246717711100'
|
1094
|
-
|
1095
|
-
|
1096
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.2ms)
|
1097
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms)
|
1098
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
1099
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (23.8ms)
|
1100
|
-
|
1101
|
-
|
1102
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-06 11:48:46 +0900
|
1103
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1104
|
-
Processing by SamplesController#new as HTML
|
1105
|
-
Rendered samples/_form.html.erb (44.5ms)
|
1106
|
-
Rendered samples/new.html.erb within layouts/application (47.8ms)
|
1107
|
-
Completed 200 OK in 69ms (Views: 63.2ms | ActiveRecord: 0.4ms)
|
1108
|
-
|
1109
|
-
|
1110
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-06 11:48:46 +0900
|
1111
|
-
|
1112
|
-
|
1113
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-06 11:48:46 +0900
|
1114
|
-
|
1115
|
-
|
1116
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-06 11:49:03 +0900
|
1117
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1118
|
-
Processing by SamplesController#new as HTML
|
1119
|
-
Rendered samples/_form.html.erb (43.6ms)
|
1120
|
-
Rendered samples/new.html.erb within layouts/application (47.5ms)
|
1121
|
-
Completed 200 OK in 67ms (Views: 61.4ms | ActiveRecord: 0.4ms)
|
1122
|
-
|
1123
|
-
|
1124
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-06 11:49:03 +0900
|
1125
|
-
|
1126
|
-
|
1127
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-06 11:49:03 +0900
|
1128
|
-
|
1129
|
-
|
1130
|
-
Started GET "/" for 127.0.0.1 at 2015-01-07 12:07:05 +0900
|
1131
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1132
|
-
Processing by SamplesController#index as HTML
|
1133
|
-
[1m[35mSample Load (0.5ms)[0m SELECT "samples".* FROM "samples"
|
1134
|
-
Rendered samples/index.html.erb within layouts/application (8.2ms)
|
1135
|
-
Completed 200 OK in 42ms (Views: 38.6ms | ActiveRecord: 0.8ms)
|
1136
|
-
|
1137
|
-
|
1138
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-07 12:07:05 +0900
|
1139
|
-
|
1140
|
-
|
1141
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-07 12:07:05 +0900
|
1142
|
-
|
1143
|
-
|
1144
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 12:07:07 +0900
|
1145
|
-
Processing by SamplesController#new as HTML
|
1146
|
-
Rendered samples/_form.html.erb (30.4ms)
|
1147
|
-
Rendered samples/new.html.erb within layouts/application (34.3ms)
|
1148
|
-
Completed 200 OK in 39ms (Views: 38.6ms | ActiveRecord: 0.0ms)
|
1149
|
-
|
1150
|
-
|
1151
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-07 12:07:07 +0900
|
1152
|
-
|
1153
|
-
|
1154
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-07 12:07:07 +0900
|
1155
|
-
|
1156
|
-
|
1157
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-07 12:07:19 +0900
|
1158
|
-
|
1159
|
-
|
1160
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 14:19:39 +0900
|
1161
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1162
|
-
Processing by SamplesController#new as HTML
|
1163
|
-
Rendered samples/_form.html.erb (32.2ms)
|
1164
|
-
Rendered samples/new.html.erb within layouts/application (35.5ms)
|
1165
|
-
Completed 200 OK in 55ms (Views: 49.8ms | ActiveRecord: 0.3ms)
|
1166
|
-
|
1167
|
-
|
1168
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-07 14:19:39 +0900
|
1169
|
-
|
1170
|
-
|
1171
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-07 14:19:39 +0900
|
1172
|
-
|
1173
|
-
|
1174
|
-
Started POST "/samples" for 127.0.0.1 at 2015-01-07 14:19:49 +0900
|
1175
|
-
Processing by SamplesController#create as HTML
|
1176
|
-
Parameters: {"utf8"=>"✓", "authenticity_token"=>"6TdUu4Yv+cJvFyBP3IRqKahUXncIP6LPl9xdFEsxOixc2Wy7Huu5o9ujPPuMfSO9cS7p24IAWnrIrpN5wZhCJw==", "sample"=>{"name"=>"", "dated_at(1i)"=>"2017", "dated_at(2i)"=>"6", "dated_at(3i)"=>"12", "datetimed_at(1i)"=>"2018", "datetimed_at(2i)"=>"1", "datetimed_at(3i)"=>"12", "datetimed_at(4i)"=>"05", "datetimed_at(5i)"=>"19"}, "commit"=>"登録する"}
|
1177
|
-
[1m[35m (0.1ms)[0m begin transaction
|
1178
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1179
|
-
Rendered samples/_form.html.erb (5.6ms)
|
1180
|
-
Rendered samples/new.html.erb within layouts/application (7.3ms)
|
1181
|
-
Completed 200 OK in 15ms (Views: 12.0ms | ActiveRecord: 0.1ms)
|
1182
|
-
|
1183
|
-
|
1184
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-07 14:19:49 +0900
|
1185
|
-
|
1186
|
-
|
1187
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-07 14:19:49 +0900
|
1188
|
-
|
1189
|
-
|
1190
|
-
Started POST "/samples" for 127.0.0.1 at 2015-01-07 14:19:52 +0900
|
1191
|
-
Processing by SamplesController#create as HTML
|
1192
|
-
Parameters: {"utf8"=>"✓", "authenticity_token"=>"v3JZ5v6QBTV4I/TT/OAS8t5J+8v1dGtMp4z4WYKwL7YKnGHmZlRFVMyX6GesGVtmBzNMZ39Lk/n4/jY0CBlXvQ==", "sample"=>{"name"=>"asdfad", "dated_at(1i)"=>"2017", "dated_at(2i)"=>"6", "dated_at(3i)"=>"12", "datetimed_at(1i)"=>"2018", "datetimed_at(2i)"=>"1", "datetimed_at(3i)"=>"12", "datetimed_at(4i)"=>"05", "datetimed_at(5i)"=>"19"}, "commit"=>"登録する"}
|
1193
|
-
[1m[35m (0.1ms)[0m begin transaction
|
1194
|
-
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "samples" ("name", "dated_at", "datetimed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "asdfad"], ["dated_at", "2017-06-12"], ["datetimed_at", "2018-01-12 05:19:00.000000"], ["created_at", "2015-01-07 05:19:52.243564"], ["updated_at", "2015-01-07 05:19:52.243564"]]
|
1195
|
-
[1m[35m (0.9ms)[0m commit transaction
|
1196
|
-
Redirected to http://0.0.0.0:3000/samples/2
|
1197
|
-
Completed 302 Found in 9ms (ActiveRecord: 1.7ms)
|
1198
|
-
|
1199
|
-
|
1200
|
-
Started GET "/samples/2" for 127.0.0.1 at 2015-01-07 14:19:52 +0900
|
1201
|
-
Processing by SamplesController#show as HTML
|
1202
|
-
Parameters: {"id"=>"2"}
|
1203
|
-
[1m[36mSample Load (0.2ms)[0m [1mSELECT "samples".* FROM "samples" WHERE "samples"."id" = ? LIMIT 1[0m [["id", 2]]
|
1204
|
-
Rendered samples/show.html.erb within layouts/application (3.2ms)
|
1205
|
-
Completed 200 OK in 12ms (Views: 6.3ms | ActiveRecord: 0.2ms)
|
1206
|
-
|
1207
|
-
|
1208
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-07 14:19:52 +0900
|
1209
|
-
|
1210
|
-
|
1211
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-07 14:19:52 +0900
|
1212
|
-
|
1213
|
-
|
1214
|
-
Started GET "/" for 127.0.0.1 at 2015-01-07 14:49:40 +0900
|
1215
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1216
|
-
Processing by SamplesController#index as HTML
|
1217
|
-
[1m[35mSample Load (0.2ms)[0m SELECT "samples".* FROM "samples"
|
1218
|
-
Rendered samples/index.html.erb within layouts/application (6.2ms)
|
1219
|
-
Completed 200 OK in 27ms (Views: 25.3ms | ActiveRecord: 0.4ms)
|
1220
|
-
|
1221
|
-
|
1222
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-07 14:49:41 +0900
|
1223
|
-
|
1224
|
-
|
1225
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-07 14:49:41 +0900
|
1226
|
-
|
1227
|
-
|
1228
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 14:49:43 +0900
|
1229
|
-
Processing by SamplesController#new as HTML
|
1230
|
-
Rendered samples/_form.html.erb (26.9ms)
|
1231
|
-
Rendered samples/new.html.erb within layouts/application (29.9ms)
|
1232
|
-
Completed 200 OK in 34ms (Views: 34.0ms | ActiveRecord: 0.0ms)
|
1233
|
-
|
1234
|
-
|
1235
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-07 14:49:43 +0900
|
1236
|
-
|
1237
|
-
|
1238
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-07 14:49:43 +0900
|
1239
|
-
|
1240
|
-
|
1241
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 14:50:23 +0900
|
1242
|
-
Processing by SamplesController#new as HTML
|
1243
|
-
Rendered samples/_form.html.erb (10.1ms)
|
1244
|
-
Rendered samples/new.html.erb within layouts/application (11.6ms)
|
1245
|
-
Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.0ms)
|
1246
|
-
|
1247
|
-
|
1248
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-07 14:50:23 +0900
|
1249
|
-
|
1250
|
-
|
1251
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-07 14:50:23 +0900
|
1252
|
-
|
1253
|
-
|
1254
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-07 14:50:28 +0900
|
1255
|
-
|
1256
|
-
|
1257
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 14:50:46 +0900
|
1258
|
-
Processing by SamplesController#new as HTML
|
1259
|
-
Rendered samples/_form.html.erb (10.2ms)
|
1260
|
-
Rendered samples/new.html.erb within layouts/application (10.9ms)
|
1261
|
-
Completed 200 OK in 13ms (Views: 13.1ms | ActiveRecord: 0.0ms)
|
1262
|
-
|
1263
|
-
|
1264
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-07 14:50:46 +0900
|
1265
|
-
|
1266
|
-
|
1267
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-07 14:50:46 +0900
|
1268
|
-
|
1269
|
-
|
1270
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 14:51:51 +0900
|
1271
|
-
Processing by SamplesController#new as HTML
|
1272
|
-
Rendered samples/_form.html.erb (11.0ms)
|
1273
|
-
Rendered samples/new.html.erb within layouts/application (11.9ms)
|
1274
|
-
Completed 200 OK in 14ms (Views: 14.1ms | ActiveRecord: 0.0ms)
|
1275
|
-
|
1276
|
-
|
1277
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-07 14:51:51 +0900
|
1278
|
-
|
1279
|
-
|
1280
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-07 14:51:51 +0900
|
1281
|
-
|
1282
|
-
|
1283
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 14:54:59 +0900
|
1284
|
-
Processing by SamplesController#new as HTML
|
1285
|
-
Rendered samples/_form.html.erb (41.5ms)
|
1286
|
-
Rendered samples/new.html.erb within layouts/application (42.2ms)
|
1287
|
-
Completed 200 OK in 45ms (Views: 44.3ms | ActiveRecord: 0.0ms)
|
1288
|
-
|
1289
|
-
|
1290
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-07 14:54:59 +0900
|
1291
|
-
|
1292
|
-
|
1293
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-07 14:54:59 +0900
|
1294
|
-
|
1295
|
-
|
1296
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 14:55:11 +0900
|
1297
|
-
Processing by SamplesController#new as HTML
|
1298
|
-
Rendered samples/_form.html.erb (5.5ms)
|
1299
|
-
Rendered samples/new.html.erb within layouts/application (6.3ms)
|
1300
|
-
Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
|
1301
|
-
|
1302
|
-
|
1303
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 14:55:22 +0900
|
1304
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1305
|
-
Processing by SamplesController#new as HTML
|
1306
|
-
Rendered samples/_form.html.erb (32.8ms)
|
1307
|
-
Rendered samples/new.html.erb within layouts/application (36.4ms)
|
1308
|
-
Completed 200 OK in 56ms (Views: 50.3ms | ActiveRecord: 0.3ms)
|
1309
|
-
|
1310
|
-
|
1311
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-07 14:55:23 +0900
|
1312
|
-
|
1313
|
-
|
1314
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-07 14:55:23 +0900
|
1315
|
-
|
1316
|
-
|
1317
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 14:56:11 +0900
|
1318
|
-
Processing by SamplesController#new as HTML
|
1319
|
-
Rendered samples/_form.html.erb (6.7ms)
|
1320
|
-
Rendered samples/new.html.erb within layouts/application (7.5ms)
|
1321
|
-
Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
|
1322
|
-
|
1323
|
-
|
1324
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 14:56:15 +0900
|
1325
|
-
Processing by SamplesController#new as HTML
|
1326
|
-
Rendered samples/_form.html.erb (7.1ms)
|
1327
|
-
Rendered samples/new.html.erb within layouts/application (7.6ms)
|
1328
|
-
Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
|
1329
|
-
|
1330
|
-
|
1331
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 14:56:28 +0900
|
1332
|
-
Processing by SamplesController#new as HTML
|
1333
|
-
Rendered samples/_form.html.erb (8.2ms)
|
1334
|
-
Rendered samples/new.html.erb within layouts/application (9.9ms)
|
1335
|
-
Completed 200 OK in 14ms (Views: 14.2ms | ActiveRecord: 0.0ms)
|
1336
|
-
|
1337
|
-
|
1338
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 14:56:40 +0900
|
1339
|
-
Processing by SamplesController#new as HTML
|
1340
|
-
Rendered samples/_form.html.erb (7.8ms)
|
1341
|
-
Rendered samples/new.html.erb within layouts/application (9.2ms)
|
1342
|
-
Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.0ms)
|
1343
|
-
|
1344
|
-
|
1345
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 14:57:49 +0900
|
1346
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1347
|
-
Processing by SamplesController#new as HTML
|
1348
|
-
Rendered samples/_form.html.erb (30.8ms)
|
1349
|
-
Rendered samples/new.html.erb within layouts/application (33.9ms)
|
1350
|
-
Completed 200 OK in 50ms (Views: 45.8ms | ActiveRecord: 0.3ms)
|
1351
|
-
|
1352
|
-
|
1353
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-07 14:57:49 +0900
|
1354
|
-
|
1355
|
-
|
1356
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-07 14:57:49 +0900
|
1357
|
-
|
1358
|
-
|
1359
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 14:57:53 +0900
|
1360
|
-
Processing by SamplesController#new as HTML
|
1361
|
-
Rendered samples/_form.html.erb (5.7ms)
|
1362
|
-
Rendered samples/new.html.erb within layouts/application (6.3ms)
|
1363
|
-
Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
|
1364
|
-
|
1365
|
-
|
1366
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 14:58:59 +0900
|
1367
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1368
|
-
Processing by SamplesController#new as HTML
|
1369
|
-
Rendered samples/_form.html.erb (33.8ms)
|
1370
|
-
Rendered samples/new.html.erb within layouts/application (36.8ms)
|
1371
|
-
Completed 200 OK in 55ms (Views: 50.2ms | ActiveRecord: 0.3ms)
|
1372
|
-
|
1373
|
-
|
1374
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-07 14:58:59 +0900
|
1375
|
-
|
1376
|
-
|
1377
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-07 14:58:59 +0900
|
1378
|
-
|
1379
|
-
|
1380
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 14:59:20 +0900
|
1381
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1382
|
-
Processing by SamplesController#new as HTML
|
1383
|
-
Rendered samples/_form.html.erb (31.6ms)
|
1384
|
-
Rendered samples/new.html.erb within layouts/application (34.7ms)
|
1385
|
-
Completed 200 OK in 52ms (Views: 47.0ms | ActiveRecord: 0.3ms)
|
1386
|
-
|
1387
|
-
|
1388
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-07 14:59:21 +0900
|
1389
|
-
|
1390
|
-
|
1391
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-07 14:59:21 +0900
|
1392
|
-
|
1393
|
-
|
1394
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 14:59:22 +0900
|
1395
|
-
Processing by SamplesController#new as HTML
|
1396
|
-
Rendered samples/_form.html.erb (6.5ms)
|
1397
|
-
Rendered samples/new.html.erb within layouts/application (7.2ms)
|
1398
|
-
Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
|
1399
|
-
|
1400
|
-
|
1401
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 15:01:36 +0900
|
1402
|
-
Processing by SamplesController#new as HTML
|
1403
|
-
Rendered samples/_form.html.erb (0.8ms)
|
1404
|
-
Rendered samples/new.html.erb within layouts/application (1.3ms)
|
1405
|
-
Completed 500 Internal Server Error in 3ms
|
1406
|
-
|
1407
|
-
SyntaxError (/Users/hiro/Desktop/date_select_separator/test/dummy/app/views/samples/_form.html.erb:21: syntax error, unexpected tSTRING_DEND, expecting ')'
|
1408
|
-
...s: true, use_separators: true } );@output_buffer.safe_append...
|
1409
|
-
... ^
|
1410
|
-
/Users/hiro/Desktop/date_select_separator/test/dummy/app/views/samples/_form.html.erb:25: syntax error, unexpected tSTRING_DEND, expecting '}'
|
1411
|
-
...se_separators: { inline: true } );@output_buffer.safe_append...
|
1412
|
-
... ^
|
1413
|
-
/Users/hiro/Desktop/date_select_separator/test/dummy/app/views/samples/_form.html.erb:30: syntax error, unexpected keyword_end, expecting ')'
|
1414
|
-
'.freeze; end
|
1415
|
-
^
|
1416
|
-
/Users/hiro/Desktop/date_select_separator/test/dummy/app/views/samples/_form.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')'
|
1417
|
-
/Users/hiro/Desktop/date_select_separator/test/dummy/app/views/samples/_form.html.erb:34: syntax error, unexpected keyword_end, expecting ')'):
|
1418
|
-
app/views/samples/_form.html.erb:21: syntax error, unexpected tSTRING_DEND, expecting ')'
|
1419
|
-
app/views/samples/_form.html.erb:25: syntax error, unexpected tSTRING_DEND, expecting '}'
|
1420
|
-
app/views/samples/_form.html.erb:30: syntax error, unexpected keyword_end, expecting ')'
|
1421
|
-
app/views/samples/_form.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')'
|
1422
|
-
app/views/samples/_form.html.erb:34: syntax error, unexpected keyword_end, expecting ')'
|
1423
|
-
app/views/samples/new.html.erb:3:in `_app_views_samples_new_html_erb___1039971555734136228_70139552737320'
|
1424
|
-
|
1425
|
-
|
1426
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.3ms)
|
1427
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms)
|
1428
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
|
1429
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (28.6ms)
|
1430
|
-
|
1431
|
-
|
1432
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 15:01:43 +0900
|
1433
|
-
Processing by SamplesController#new as HTML
|
1434
|
-
Rendered samples/_form.html.erb (6.8ms)
|
1435
|
-
Rendered samples/new.html.erb within layouts/application (7.6ms)
|
1436
|
-
Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms)
|
1437
|
-
|
1438
|
-
|
1439
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 15:01:44 +0900
|
1440
|
-
Processing by SamplesController#new as HTML
|
1441
|
-
Rendered samples/_form.html.erb (4.3ms)
|
1442
|
-
Rendered samples/new.html.erb within layouts/application (4.9ms)
|
1443
|
-
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
|
1444
|
-
|
1445
|
-
|
1446
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-07 15:01:44 +0900
|
1447
|
-
|
1448
|
-
|
1449
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-07 15:01:44 +0900
|
1450
|
-
|
1451
|
-
|
1452
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 15:09:28 +0900
|
1453
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1454
|
-
Processing by SamplesController#new as HTML
|
1455
|
-
Rendered samples/_form.html.erb (29.9ms)
|
1456
|
-
Rendered samples/new.html.erb within layouts/application (33.1ms)
|
1457
|
-
Completed 200 OK in 50ms (Views: 44.7ms | ActiveRecord: 0.3ms)
|
1458
|
-
|
1459
|
-
|
1460
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-07 15:09:29 +0900
|
1461
|
-
|
1462
|
-
|
1463
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-07 15:09:29 +0900
|
1464
|
-
|
1465
|
-
|
1466
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 15:09:52 +0900
|
1467
|
-
Processing by SamplesController#new as HTML
|
1468
|
-
Rendered samples/_form.html.erb (6.6ms)
|
1469
|
-
Rendered samples/new.html.erb within layouts/application (7.7ms)
|
1470
|
-
Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms)
|
1471
|
-
|
1472
|
-
|
1473
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 15:10:20 +0900
|
1474
|
-
Processing by SamplesController#new as HTML
|
1475
|
-
Rendered samples/_form.html.erb (6.0ms)
|
1476
|
-
Rendered samples/new.html.erb within layouts/application (7.0ms)
|
1477
|
-
Completed 200 OK in 10ms (Views: 10.2ms | ActiveRecord: 0.0ms)
|
1478
|
-
|
1479
|
-
|
1480
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 15:10:26 +0900
|
1481
|
-
Processing by SamplesController#new as HTML
|
1482
|
-
Rendered samples/_form.html.erb (5.9ms)
|
1483
|
-
Rendered samples/new.html.erb within layouts/application (6.6ms)
|
1484
|
-
Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
|
1485
|
-
|
1486
|
-
|
1487
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 15:11:05 +0900
|
1488
|
-
Processing by SamplesController#new as HTML
|
1489
|
-
Rendered samples/_form.html.erb (11.7ms)
|
1490
|
-
Rendered samples/new.html.erb within layouts/application (12.5ms)
|
1491
|
-
Completed 500 Internal Server Error in 14ms
|
1492
|
-
|
1493
|
-
ActionView::Template::Error (undefined local variable or method `h1' for #<#<Class:0x007ff6feeecd78>:0x007ff6f9ebf648>):
|
1494
|
-
17: </div>
|
1495
|
-
18: <div class="field">
|
1496
|
-
19: <%= f.label :dated_at %><br>
|
1497
|
-
20: <%= f.date_select :dated_at, use_month_numbers: true, use_separators: { html_tag: h1, class_prefix: 'hoge', wrapper_select_tag: {class_prefix: 'aaa_', html_tag: :span} } %>
|
1498
|
-
21: </div>
|
1499
|
-
22: <div class="field">
|
1500
|
-
23: <%= f.label :datetimed_at %><br>
|
1501
|
-
app/views/samples/_form.html.erb:20:in `block in _app_views_samples__form_html_erb__2729393937889832906_70349365815800'
|
1502
|
-
app/views/samples/_form.html.erb:1:in `_app_views_samples__form_html_erb__2729393937889832906_70349365815800'
|
1503
|
-
app/views/samples/new.html.erb:3:in `_app_views_samples_new_html_erb___1755177537665362440_70349407741720'
|
1504
|
-
|
1505
|
-
|
1506
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.2ms)
|
1507
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms)
|
1508
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
|
1509
|
-
Rendered /Users/hiro/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (22.9ms)
|
1510
|
-
|
1511
|
-
|
1512
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 15:11:14 +0900
|
1513
|
-
Processing by SamplesController#new as HTML
|
1514
|
-
Rendered samples/_form.html.erb (6.2ms)
|
1515
|
-
Rendered samples/new.html.erb within layouts/application (6.9ms)
|
1516
|
-
Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
|
1517
|
-
|
1518
|
-
|
1519
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 15:11:22 +0900
|
1520
|
-
Processing by SamplesController#new as HTML
|
1521
|
-
Rendered samples/_form.html.erb (12.5ms)
|
1522
|
-
Rendered samples/new.html.erb within layouts/application (14.0ms)
|
1523
|
-
Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.0ms)
|
1524
|
-
|
1525
|
-
|
1526
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 15:12:23 +0900
|
1527
|
-
Processing by SamplesController#new as HTML
|
1528
|
-
Rendered samples/_form.html.erb (14.6ms)
|
1529
|
-
Rendered samples/new.html.erb within layouts/application (15.4ms)
|
1530
|
-
Completed 200 OK in 19ms (Views: 19.2ms | ActiveRecord: 0.0ms)
|
1531
|
-
|
1532
|
-
|
1533
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-07 15:12:23 +0900
|
1534
|
-
|
1535
|
-
|
1536
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-07 15:12:23 +0900
|
1537
|
-
|
1538
|
-
|
1539
|
-
Started GET "/samples/new" for 127.0.0.1 at 2015-01-07 15:15:48 +0900
|
1540
|
-
Processing by SamplesController#new as HTML
|
1541
|
-
Rendered samples/_form.html.erb (6.3ms)
|
1542
|
-
Rendered samples/new.html.erb within layouts/application (7.0ms)
|
1543
|
-
Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
|
1544
|
-
|
1545
|
-
|
1546
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-07 15:15:48 +0900
|
1547
|
-
|
1548
|
-
|
1549
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-07 15:15:48 +0900
|