a4nt 0.0.2 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -1
- data/app/models/a4nt/announcement.rb +17 -1
- data/app/views/a4nt/announcements/_form.html.erb +4 -0
- data/app/views/a4nt/announcements/index.html.erb +2 -0
- data/app/views/a4nt/announcements/show.html.erb +5 -0
- data/db/migrate/20130314151144_create_a4nt_announcements.rb +6 -5
- data/lib/a4nt/version.rb +1 -1
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/schema.rb +8 -7
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +1663 -0
- data/test/dummy/log/test.log +181 -0
- metadata +8 -4
data/README.md
CHANGED
@@ -1,7 +1,23 @@
|
|
1
1
|
module A4nt
|
2
2
|
class Announcement < ActiveRecord::Base
|
3
|
-
attr_accessible :body, :end_time, :position, :start_time, :title
|
3
|
+
attr_accessible :body, :end_time, :position, :start_time, :title, :target
|
4
|
+
|
5
|
+
module Target
|
6
|
+
ALL = 'all'
|
7
|
+
NON_MEMBER = 'nonmember'
|
8
|
+
MEMBER = 'member'
|
9
|
+
|
10
|
+
def self.all
|
11
|
+
self.constants.map { |name| self.const_get(name) }
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
validates :title, :body, :start_time, :end_time, :position, :target, presence: true
|
16
|
+
validates :target, inclusion: { in: Target.all }
|
17
|
+
|
4
18
|
scope :active, -> { where(["start_time <= ? AND end_time >= ?", Time.now, Time.now]) }
|
5
19
|
scope :newer, -> { active.order('position ASC') }
|
20
|
+
scope :non_members, -> { newer.where(target: [ Target::ALL, Target::NON_MEMBER ]) }
|
21
|
+
scope :members, -> { newer.where(target: [ Target::ALL, Target::MEMBER ]) }
|
6
22
|
end
|
7
23
|
end
|
@@ -31,6 +31,10 @@
|
|
31
31
|
<%= f.label :position %><br />
|
32
32
|
<%= f.number_field :position %>
|
33
33
|
</div>
|
34
|
+
<div class="field">
|
35
|
+
<%= f.label :target %><br />
|
36
|
+
<%= f.select :target, A4nt::Announcement::Target.all %>
|
37
|
+
</div>
|
34
38
|
<div class="actions">
|
35
39
|
<%= f.submit %>
|
36
40
|
</div>
|
@@ -7,6 +7,7 @@
|
|
7
7
|
<th>Start time</th>
|
8
8
|
<th>End time</th>
|
9
9
|
<th>Position</th>
|
10
|
+
<th>Target</th>
|
10
11
|
<th></th>
|
11
12
|
<th></th>
|
12
13
|
<th></th>
|
@@ -19,6 +20,7 @@
|
|
19
20
|
<td><%= announcement.start_time %></td>
|
20
21
|
<td><%= announcement.end_time %></td>
|
21
22
|
<td><%= announcement.position %></td>
|
23
|
+
<td><%= announcement.target %></td>
|
22
24
|
<td><%= link_to 'Show', announcement %></td>
|
23
25
|
<td><%= link_to 'Edit', edit_announcement_path(announcement) %></td>
|
24
26
|
<td><%= link_to 'Destroy', announcement, method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
@@ -1,11 +1,12 @@
|
|
1
1
|
class CreateA4ntAnnouncements < ActiveRecord::Migration
|
2
2
|
def change
|
3
3
|
create_table :a4nt_announcements do |t|
|
4
|
-
t.string :title
|
5
|
-
t.string :body
|
6
|
-
t.datetime :start_time
|
7
|
-
t.datetime :end_time
|
8
|
-
t.integer :position
|
4
|
+
t.string :title, null: false, default: ''
|
5
|
+
t.string :body, null: false, default: ''
|
6
|
+
t.datetime :start_time, null: false
|
7
|
+
t.datetime :end_time, null: false
|
8
|
+
t.integer :position, null: false
|
9
|
+
t.string :target, null: false, default: 'all'
|
9
10
|
|
10
11
|
t.timestamps
|
11
12
|
end
|
data/lib/a4nt/version.rb
CHANGED
Binary file
|
data/test/dummy/db/schema.rb
CHANGED
@@ -14,13 +14,14 @@
|
|
14
14
|
ActiveRecord::Schema.define(:version => 20130314151144) do
|
15
15
|
|
16
16
|
create_table "a4nt_announcements", :force => true do |t|
|
17
|
-
t.string "title"
|
18
|
-
t.string "body"
|
19
|
-
t.datetime "start_time"
|
20
|
-
t.datetime "end_time"
|
21
|
-
t.integer "position"
|
22
|
-
t.
|
23
|
-
t.datetime "
|
17
|
+
t.string "title", :default => "", :null => false
|
18
|
+
t.string "body", :default => "", :null => false
|
19
|
+
t.datetime "start_time", :null => false
|
20
|
+
t.datetime "end_time", :null => false
|
21
|
+
t.integer "position", :null => false
|
22
|
+
t.string "target", :default => "all", :null => false
|
23
|
+
t.datetime "created_at", :null => false
|
24
|
+
t.datetime "updated_at", :null => false
|
24
25
|
end
|
25
26
|
|
26
27
|
end
|
Binary file
|
@@ -541,3 +541,1666 @@ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
541
541
|
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-15 01:03:37 +0900
|
542
542
|
Served asset /jquery.js - 304 Not Modified (0ms)
|
543
543
|
Connecting to database specified by database.yml
|
544
|
+
Connecting to database specified by database.yml
|
545
|
+
[1m[36m (4.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
546
|
+
Migrating to CreateA4ntAnnouncements (20130314151144)
|
547
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
548
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
549
|
+
Connecting to database specified by database.yml
|
550
|
+
[1m[36m (1.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
551
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
552
|
+
Migrating to CreateA4ntAnnouncements (20130314151144)
|
553
|
+
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
554
|
+
[1m[35m (0.0ms)[0m begin transaction
|
555
|
+
[1m[36m (1.1ms)[0m [1mDROP TABLE "a4nt_announcements"[0m
|
556
|
+
[1m[35m (0.1ms)[0m DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20130314151144'
|
557
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
558
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
559
|
+
Connecting to database specified by database.yml
|
560
|
+
[1m[36m (1.9ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
561
|
+
Migrating to CreateA4ntAnnouncements (20130314151144)
|
562
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
563
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
564
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "a4nt_announcements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" varchar(255), "start_time" datetime, "end_time" datetime, "position" integer, "target" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
565
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130314151144')[0m
|
566
|
+
[1m[35m (0.7ms)[0m commit transaction
|
567
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
568
|
+
|
569
|
+
|
570
|
+
Started GET "/" for 127.0.0.1 at 2013-03-18 17:24:10 +0900
|
571
|
+
Connecting to database specified by database.yml
|
572
|
+
|
573
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
574
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
575
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
576
|
+
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
577
|
+
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
578
|
+
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
579
|
+
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
580
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
581
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
582
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
583
|
+
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
584
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
585
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
586
|
+
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
587
|
+
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
588
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
589
|
+
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
590
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
591
|
+
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
592
|
+
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
593
|
+
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
594
|
+
|
595
|
+
|
596
|
+
Rendered /Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/gems/1.9.1/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.2ms)
|
597
|
+
|
598
|
+
|
599
|
+
Started GET "/a4nt" for 127.0.0.1 at 2013-03-18 17:24:16 +0900
|
600
|
+
Processing by A4nt::AnnouncementsController#index as HTML
|
601
|
+
[1m[36mA4nt::Announcement Load (0.1ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" [0m
|
602
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/index.html.erb within layouts/a4nt/application (1.0ms)
|
603
|
+
Completed 200 OK in 74ms (Views: 50.1ms | ActiveRecord: 1.6ms)
|
604
|
+
|
605
|
+
|
606
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 17:24:16 +0900
|
607
|
+
Served asset /a4nt/application.css - 304 Not Modified (17ms)
|
608
|
+
|
609
|
+
|
610
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 17:24:16 +0900
|
611
|
+
Served asset /jquery.js - 304 Not Modified (2ms)
|
612
|
+
|
613
|
+
|
614
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 17:24:16 +0900
|
615
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (2ms)
|
616
|
+
|
617
|
+
|
618
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 17:24:16 +0900
|
619
|
+
Served asset /a4nt/application.js - 304 Not Modified (8ms)
|
620
|
+
|
621
|
+
|
622
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 17:24:16 +0900
|
623
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (2ms)
|
624
|
+
|
625
|
+
|
626
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 17:24:16 +0900
|
627
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
628
|
+
|
629
|
+
|
630
|
+
Started GET "/a4nt/announcements/new" for 127.0.0.1 at 2013-03-18 17:24:18 +0900
|
631
|
+
Processing by A4nt::AnnouncementsController#new as HTML
|
632
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/_form.html.erb (34.7ms)
|
633
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/new.html.erb within layouts/a4nt/application (41.1ms)
|
634
|
+
Completed 500 Internal Server Error in 53ms
|
635
|
+
|
636
|
+
ActionView::Template::Error (uninitialized constant ActionView::CompiledTemplates::Announcement):
|
637
|
+
33: </div>
|
638
|
+
34: <div class="field">
|
639
|
+
35: <%= f.label :target %><br />
|
640
|
+
36: <%= f.select :target, Announcement::TARGETS %>
|
641
|
+
37: </div>
|
642
|
+
38: <div class="actions">
|
643
|
+
39: <%= f.submit %>
|
644
|
+
/Users/taka/work/rails/a4nt/app/views/a4nt/announcements/_form.html.erb:36:in `block in ___sers_taka_work_rails_a_nt_app_views_a_nt_announcements__form_html_erb__2331599457806793132_70356888247320'
|
645
|
+
actionpack (3.2.12) lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
|
646
|
+
actionpack (3.2.12) lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
|
647
|
+
actionpack (3.2.12) lib/action_view/helpers/capture_helper.rb:40:in `capture'
|
648
|
+
actionpack (3.2.12) lib/action_view/helpers/form_helper.rb:607:in `fields_for'
|
649
|
+
actionpack (3.2.12) lib/action_view/helpers/form_helper.rb:378:in `form_for'
|
650
|
+
/Users/taka/work/rails/a4nt/app/views/a4nt/announcements/_form.html.erb:1:in `___sers_taka_work_rails_a_nt_app_views_a_nt_announcements__form_html_erb__2331599457806793132_70356888247320'
|
651
|
+
actionpack (3.2.12) lib/action_view/template.rb:145:in `block in render'
|
652
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:125:in `instrument'
|
653
|
+
actionpack (3.2.12) lib/action_view/template.rb:143:in `render'
|
654
|
+
actionpack (3.2.12) lib/action_view/renderer/partial_renderer.rb:265:in `render_partial'
|
655
|
+
actionpack (3.2.12) lib/action_view/renderer/partial_renderer.rb:238:in `block in render'
|
656
|
+
actionpack (3.2.12) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
657
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `block in instrument'
|
658
|
+
activesupport (3.2.12) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
659
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `instrument'
|
660
|
+
actionpack (3.2.12) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
661
|
+
actionpack (3.2.12) lib/action_view/renderer/partial_renderer.rb:237:in `render'
|
662
|
+
actionpack (3.2.12) lib/action_view/renderer/renderer.rb:41:in `render_partial'
|
663
|
+
actionpack (3.2.12) lib/action_view/helpers/rendering_helper.rb:27:in `render'
|
664
|
+
/Users/taka/work/rails/a4nt/app/views/a4nt/announcements/new.html.erb:3:in `___sers_taka_work_rails_a_nt_app_views_a_nt_announcements_new_html_erb___1924761237370462951_70356888202660'
|
665
|
+
actionpack (3.2.12) lib/action_view/template.rb:145:in `block in render'
|
666
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:125:in `instrument'
|
667
|
+
actionpack (3.2.12) lib/action_view/template.rb:143:in `render'
|
668
|
+
actionpack (3.2.12) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
669
|
+
actionpack (3.2.12) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
670
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `block in instrument'
|
671
|
+
activesupport (3.2.12) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
672
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `instrument'
|
673
|
+
actionpack (3.2.12) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
674
|
+
actionpack (3.2.12) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
675
|
+
actionpack (3.2.12) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
676
|
+
actionpack (3.2.12) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
677
|
+
actionpack (3.2.12) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
678
|
+
actionpack (3.2.12) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
679
|
+
actionpack (3.2.12) lib/action_view/renderer/renderer.rb:17:in `render'
|
680
|
+
actionpack (3.2.12) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
681
|
+
actionpack (3.2.12) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
682
|
+
actionpack (3.2.12) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
683
|
+
actionpack (3.2.12) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
684
|
+
actionpack (3.2.12) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
685
|
+
actionpack (3.2.12) lib/abstract_controller/rendering.rb:88:in `render'
|
686
|
+
actionpack (3.2.12) lib/action_controller/metal/rendering.rb:16:in `render'
|
687
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
688
|
+
activesupport (3.2.12) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
689
|
+
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
690
|
+
activesupport (3.2.12) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
691
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
692
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
693
|
+
activerecord (3.2.12) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
694
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
695
|
+
actionpack (3.2.12) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
696
|
+
actionpack (3.2.12) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
697
|
+
/Users/taka/work/rails/a4nt/app/controllers/a4nt/announcements_controller.rb:32:in `new'
|
698
|
+
actionpack (3.2.12) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
699
|
+
actionpack (3.2.12) lib/abstract_controller/base.rb:167:in `process_action'
|
700
|
+
actionpack (3.2.12) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
701
|
+
actionpack (3.2.12) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
702
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:403:in `_run__566811755414870387__process_action__2831262373056280722__callbacks'
|
703
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
704
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
705
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
706
|
+
actionpack (3.2.12) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
707
|
+
actionpack (3.2.12) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
708
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
709
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `block in instrument'
|
710
|
+
activesupport (3.2.12) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
711
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `instrument'
|
712
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
713
|
+
actionpack (3.2.12) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
714
|
+
activerecord (3.2.12) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
715
|
+
actionpack (3.2.12) lib/abstract_controller/base.rb:121:in `process'
|
716
|
+
actionpack (3.2.12) lib/abstract_controller/rendering.rb:45:in `process'
|
717
|
+
actionpack (3.2.12) lib/action_controller/metal.rb:203:in `dispatch'
|
718
|
+
actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
719
|
+
actionpack (3.2.12) lib/action_controller/metal.rb:246:in `block in action'
|
720
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
721
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
722
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
723
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
724
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
725
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
726
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
727
|
+
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
728
|
+
railties (3.2.12) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
729
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
730
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
731
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
732
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
733
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
734
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
735
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
736
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
|
737
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
738
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
739
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
740
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
741
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
742
|
+
activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
|
743
|
+
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
744
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
745
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `_run__3018411428332797886__call__3453259086930401912__callbacks'
|
746
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
747
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
748
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
749
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
750
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
751
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
752
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
753
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
754
|
+
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
755
|
+
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
756
|
+
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
757
|
+
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
758
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
759
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
760
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
761
|
+
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
762
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
763
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
764
|
+
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
765
|
+
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
766
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
767
|
+
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
768
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
769
|
+
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
770
|
+
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
771
|
+
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
772
|
+
|
773
|
+
|
774
|
+
Rendered /Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/gems/1.9.1/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (12.7ms)
|
775
|
+
Rendered /Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/gems/1.9.1/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
776
|
+
Rendered /Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/gems/1.9.1/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (43.7ms)
|
777
|
+
|
778
|
+
|
779
|
+
Started GET "/a4nt/announcements/new" for 127.0.0.1 at 2013-03-18 17:25:10 +0900
|
780
|
+
Connecting to database specified by database.yml
|
781
|
+
Processing by A4nt::AnnouncementsController#new as HTML
|
782
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/_form.html.erb (35.0ms)
|
783
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/new.html.erb within layouts/a4nt/application (40.4ms)
|
784
|
+
Completed 200 OK in 104ms (Views: 62.7ms | ActiveRecord: 1.9ms)
|
785
|
+
|
786
|
+
|
787
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 17:25:10 +0900
|
788
|
+
Served asset /a4nt/application.css - 304 Not Modified (10ms)
|
789
|
+
|
790
|
+
|
791
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 17:25:10 +0900
|
792
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (1ms)
|
793
|
+
|
794
|
+
|
795
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 17:25:10 +0900
|
796
|
+
Served asset /jquery.js - 304 Not Modified (2ms)
|
797
|
+
|
798
|
+
|
799
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 17:25:10 +0900
|
800
|
+
Served asset /a4nt/application.js - 304 Not Modified (5ms)
|
801
|
+
|
802
|
+
|
803
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 17:25:10 +0900
|
804
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (2ms)
|
805
|
+
|
806
|
+
|
807
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 17:25:10 +0900
|
808
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
809
|
+
|
810
|
+
|
811
|
+
Started POST "/a4nt/announcements" for 127.0.0.1 at 2013-03-18 17:25:12 +0900
|
812
|
+
Processing by A4nt::AnnouncementsController#create as HTML
|
813
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"lfnL+by0CmkFH9FQTszLKkQBmDjorMerRBh9NfBgsm8=", "announcement"=>{"title"=>"", "body"=>"", "start_time(1i)"=>"2013", "start_time(2i)"=>"3", "start_time(3i)"=>"18", "start_time(4i)"=>"08", "start_time(5i)"=>"25", "end_time(1i)"=>"2013", "end_time(2i)"=>"3", "end_time(3i)"=>"18", "end_time(4i)"=>"08", "end_time(5i)"=>"25", "position"=>"", "target"=>"all"}, "commit"=>"Create Announcement"}
|
814
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
815
|
+
[1m[35mSQL (6.5ms)[0m INSERT INTO "a4nt_announcements" ("body", "created_at", "end_time", "position", "start_time", "target", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", ""], ["created_at", Mon, 18 Mar 2013 08:25:12 UTC +00:00], ["end_time", Mon, 18 Mar 2013 08:25:00 UTC +00:00], ["position", nil], ["start_time", Mon, 18 Mar 2013 08:25:00 UTC +00:00], ["target", "all"], ["title", ""], ["updated_at", Mon, 18 Mar 2013 08:25:12 UTC +00:00]]
|
816
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
817
|
+
Redirected to http://localhost:3000/a4nt/announcements/1
|
818
|
+
Completed 302 Found in 12ms (ActiveRecord: 7.5ms)
|
819
|
+
|
820
|
+
|
821
|
+
Started GET "/a4nt/announcements/1" for 127.0.0.1 at 2013-03-18 17:25:12 +0900
|
822
|
+
Processing by A4nt::AnnouncementsController#show as HTML
|
823
|
+
Parameters: {"id"=>"1"}
|
824
|
+
[1m[35mA4nt::Announcement Load (0.3ms)[0m SELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1 [["id", "1"]]
|
825
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/show.html.erb within layouts/a4nt/application (1.6ms)
|
826
|
+
Completed 200 OK in 8ms (Views: 5.5ms | ActiveRecord: 0.3ms)
|
827
|
+
|
828
|
+
|
829
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 17:25:12 +0900
|
830
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
831
|
+
|
832
|
+
|
833
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 17:25:12 +0900
|
834
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
835
|
+
|
836
|
+
|
837
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 17:25:12 +0900
|
838
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
839
|
+
|
840
|
+
|
841
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 17:25:12 +0900
|
842
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
843
|
+
|
844
|
+
|
845
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 17:25:12 +0900
|
846
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
847
|
+
|
848
|
+
|
849
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 17:25:12 +0900
|
850
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
851
|
+
|
852
|
+
|
853
|
+
Started GET "/a4nt" for 127.0.0.1 at 2013-03-18 17:25:35 +0900
|
854
|
+
Processing by A4nt::AnnouncementsController#index as HTML
|
855
|
+
[1m[36mA4nt::Announcement Load (0.2ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" [0m
|
856
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/index.html.erb within layouts/a4nt/application (2.1ms)
|
857
|
+
Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.2ms)
|
858
|
+
|
859
|
+
|
860
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 17:25:35 +0900
|
861
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
862
|
+
|
863
|
+
|
864
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 17:25:35 +0900
|
865
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
866
|
+
|
867
|
+
|
868
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 17:25:35 +0900
|
869
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
870
|
+
|
871
|
+
|
872
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 17:25:35 +0900
|
873
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
874
|
+
|
875
|
+
|
876
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 17:25:35 +0900
|
877
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
878
|
+
|
879
|
+
|
880
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 17:25:35 +0900
|
881
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
882
|
+
|
883
|
+
|
884
|
+
Started GET "/a4nt" for 127.0.0.1 at 2013-03-18 17:34:06 +0900
|
885
|
+
Connecting to database specified by database.yml
|
886
|
+
|
887
|
+
ArgumentError (Unknown validator: 'PrecenceValidator'):
|
888
|
+
activemodel (3.2.12) lib/active_model/validations/validates.rb:96:in `rescue in block in validates'
|
889
|
+
activemodel (3.2.12) lib/active_model/validations/validates.rb:93:in `block in validates'
|
890
|
+
activemodel (3.2.12) lib/active_model/validations/validates.rb:90:in `each'
|
891
|
+
activemodel (3.2.12) lib/active_model/validations/validates.rb:90:in `validates'
|
892
|
+
/Users/taka/work/rails/a4nt/app/models/a4nt/announcement.rb:6:in `<class:Announcement>'
|
893
|
+
/Users/taka/work/rails/a4nt/app/models/a4nt/announcement.rb:2:in `<module:A4nt>'
|
894
|
+
/Users/taka/work/rails/a4nt/app/models/a4nt/announcement.rb:1:in `<top (required)>'
|
895
|
+
activesupport (3.2.12) lib/active_support/dependencies.rb:469:in `load'
|
896
|
+
activesupport (3.2.12) lib/active_support/dependencies.rb:469:in `block in load_file'
|
897
|
+
activesupport (3.2.12) lib/active_support/dependencies.rb:639:in `new_constants_in'
|
898
|
+
activesupport (3.2.12) lib/active_support/dependencies.rb:468:in `load_file'
|
899
|
+
activesupport (3.2.12) lib/active_support/dependencies.rb:353:in `require_or_load'
|
900
|
+
activesupport (3.2.12) lib/active_support/dependencies.rb:502:in `load_missing_constant'
|
901
|
+
activesupport (3.2.12) lib/active_support/dependencies.rb:192:in `block in const_missing'
|
902
|
+
activesupport (3.2.12) lib/active_support/dependencies.rb:190:in `each'
|
903
|
+
activesupport (3.2.12) lib/active_support/dependencies.rb:190:in `const_missing'
|
904
|
+
activesupport (3.2.12) lib/active_support/inflector/methods.rb:230:in `block in constantize'
|
905
|
+
activesupport (3.2.12) lib/active_support/inflector/methods.rb:229:in `each'
|
906
|
+
activesupport (3.2.12) lib/active_support/inflector/methods.rb:229:in `constantize'
|
907
|
+
activesupport (3.2.12) lib/active_support/inflector/methods.rb:260:in `safe_constantize'
|
908
|
+
activesupport (3.2.12) lib/active_support/core_ext/string/inflections.rb:66:in `safe_constantize'
|
909
|
+
actionpack (3.2.12) lib/action_controller/metal/params_wrapper.rb:152:in `_default_wrap_model'
|
910
|
+
actionpack (3.2.12) lib/action_controller/metal/params_wrapper.rb:169:in `_set_wrapper_defaults'
|
911
|
+
actionpack (3.2.12) lib/action_controller/metal/params_wrapper.rb:133:in `inherited'
|
912
|
+
actionpack (3.2.12) lib/abstract_controller/railties/routes_helpers.rb:7:in `block (2 levels) in with'
|
913
|
+
actionpack (3.2.12) lib/action_controller/railties/paths.rb:7:in `block (2 levels) in with'
|
914
|
+
/Users/taka/work/rails/a4nt/app/controllers/a4nt/announcements_controller.rb:4:in `<module:A4nt>'
|
915
|
+
/Users/taka/work/rails/a4nt/app/controllers/a4nt/announcements_controller.rb:3:in `<top (required)>'
|
916
|
+
activesupport (3.2.12) lib/active_support/dependencies.rb:469:in `load'
|
917
|
+
activesupport (3.2.12) lib/active_support/dependencies.rb:469:in `block in load_file'
|
918
|
+
activesupport (3.2.12) lib/active_support/dependencies.rb:639:in `new_constants_in'
|
919
|
+
activesupport (3.2.12) lib/active_support/dependencies.rb:468:in `load_file'
|
920
|
+
activesupport (3.2.12) lib/active_support/dependencies.rb:353:in `require_or_load'
|
921
|
+
activesupport (3.2.12) lib/active_support/dependencies.rb:502:in `load_missing_constant'
|
922
|
+
activesupport (3.2.12) lib/active_support/dependencies.rb:192:in `block in const_missing'
|
923
|
+
activesupport (3.2.12) lib/active_support/dependencies.rb:190:in `each'
|
924
|
+
activesupport (3.2.12) lib/active_support/dependencies.rb:190:in `const_missing'
|
925
|
+
activesupport (3.2.12) lib/active_support/inflector/methods.rb:230:in `block in constantize'
|
926
|
+
activesupport (3.2.12) lib/active_support/inflector/methods.rb:229:in `each'
|
927
|
+
activesupport (3.2.12) lib/active_support/inflector/methods.rb:229:in `constantize'
|
928
|
+
activesupport (3.2.12) lib/active_support/dependencies.rb:554:in `get'
|
929
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
|
930
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:54:in `controller'
|
931
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:32:in `call'
|
932
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
933
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
934
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
935
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
936
|
+
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
937
|
+
railties (3.2.12) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
938
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
939
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
940
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
941
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
942
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
943
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
944
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
945
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
|
946
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
947
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
948
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
949
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
950
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
951
|
+
activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
|
952
|
+
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
953
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
954
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `_run__2788564409546295268__call__2427870005645344102__callbacks'
|
955
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
956
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
957
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
958
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
959
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
960
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
961
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
962
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
963
|
+
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
964
|
+
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
965
|
+
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
966
|
+
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
967
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
968
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
969
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
970
|
+
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
971
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
972
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
973
|
+
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
974
|
+
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
975
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
976
|
+
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
977
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
978
|
+
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
979
|
+
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
980
|
+
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
981
|
+
|
982
|
+
|
983
|
+
Rendered /Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/gems/1.9.1/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
984
|
+
Rendered /Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/gems/1.9.1/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.5ms)
|
985
|
+
Rendered /Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/gems/1.9.1/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.4ms)
|
986
|
+
|
987
|
+
|
988
|
+
Started GET "/a4nt" for 127.0.0.1 at 2013-03-18 17:34:42 +0900
|
989
|
+
Connecting to database specified by database.yml
|
990
|
+
Processing by A4nt::AnnouncementsController#index as HTML
|
991
|
+
[1m[36mA4nt::Announcement Load (0.1ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" [0m
|
992
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/index.html.erb within layouts/a4nt/application (4.8ms)
|
993
|
+
Completed 200 OK in 65ms (Views: 25.3ms | ActiveRecord: 1.8ms)
|
994
|
+
|
995
|
+
|
996
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 17:34:43 +0900
|
997
|
+
Served asset /a4nt/application.css - 304 Not Modified (26ms)
|
998
|
+
|
999
|
+
|
1000
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 17:34:43 +0900
|
1001
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (2ms)
|
1002
|
+
|
1003
|
+
|
1004
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 17:34:43 +0900
|
1005
|
+
Served asset /jquery.js - 304 Not Modified (2ms)
|
1006
|
+
|
1007
|
+
|
1008
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 17:34:43 +0900
|
1009
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
1010
|
+
|
1011
|
+
|
1012
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 17:34:43 +0900
|
1013
|
+
Served asset /a4nt/application.js - 304 Not Modified (6ms)
|
1014
|
+
|
1015
|
+
|
1016
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 17:34:43 +0900
|
1017
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (2ms)
|
1018
|
+
|
1019
|
+
|
1020
|
+
Started GET "/a4nt/announcements/new" for 127.0.0.1 at 2013-03-18 17:34:46 +0900
|
1021
|
+
Processing by A4nt::AnnouncementsController#new as HTML
|
1022
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/_form.html.erb (18.5ms)
|
1023
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/new.html.erb within layouts/a4nt/application (23.0ms)
|
1024
|
+
Completed 200 OK in 27ms (Views: 26.8ms | ActiveRecord: 0.0ms)
|
1025
|
+
|
1026
|
+
|
1027
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 17:34:46 +0900
|
1028
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1029
|
+
|
1030
|
+
|
1031
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 17:34:46 +0900
|
1032
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1033
|
+
|
1034
|
+
|
1035
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 17:34:46 +0900
|
1036
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1037
|
+
|
1038
|
+
|
1039
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 17:34:46 +0900
|
1040
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1041
|
+
|
1042
|
+
|
1043
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 17:34:46 +0900
|
1044
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1045
|
+
|
1046
|
+
|
1047
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 17:34:46 +0900
|
1048
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1049
|
+
|
1050
|
+
|
1051
|
+
Started POST "/a4nt/announcements" for 127.0.0.1 at 2013-03-18 17:34:58 +0900
|
1052
|
+
Processing by A4nt::AnnouncementsController#create as HTML
|
1053
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"lfnL+by0CmkFH9FQTszLKkQBmDjorMerRBh9NfBgsm8=", "announcement"=>{"title"=>"test", "body"=>"alluser", "start_time(1i)"=>"2013", "start_time(2i)"=>"3", "start_time(3i)"=>"18", "start_time(4i)"=>"08", "start_time(5i)"=>"34", "end_time(1i)"=>"2013", "end_time(2i)"=>"3", "end_time(3i)"=>"18", "end_time(4i)"=>"08", "end_time(5i)"=>"34", "position"=>"3", "target"=>"all"}, "commit"=>"Create Announcement"}
|
1054
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1055
|
+
[1m[36mSQL (32.7ms)[0m [1mINSERT INTO "a4nt_announcements" ("body", "created_at", "end_time", "position", "start_time", "target", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["body", "alluser"], ["created_at", Mon, 18 Mar 2013 08:34:58 UTC +00:00], ["end_time", Mon, 18 Mar 2013 08:34:00 UTC +00:00], ["position", 3], ["start_time", Mon, 18 Mar 2013 08:34:00 UTC +00:00], ["target", "all"], ["title", "test"], ["updated_at", Mon, 18 Mar 2013 08:34:58 UTC +00:00]]
|
1056
|
+
[1m[35m (1.0ms)[0m commit transaction
|
1057
|
+
Redirected to http://localhost:3000/a4nt/announcements/2
|
1058
|
+
Completed 302 Found in 42ms (ActiveRecord: 33.8ms)
|
1059
|
+
|
1060
|
+
|
1061
|
+
Started GET "/a4nt/announcements/2" for 127.0.0.1 at 2013-03-18 17:34:58 +0900
|
1062
|
+
Processing by A4nt::AnnouncementsController#show as HTML
|
1063
|
+
Parameters: {"id"=>"2"}
|
1064
|
+
[1m[36mA4nt::Announcement Load (0.3ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1065
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/show.html.erb within layouts/a4nt/application (2.0ms)
|
1066
|
+
Completed 200 OK in 12ms (Views: 8.4ms | ActiveRecord: 0.3ms)
|
1067
|
+
|
1068
|
+
|
1069
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 17:34:58 +0900
|
1070
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1071
|
+
|
1072
|
+
|
1073
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 17:34:58 +0900
|
1074
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1075
|
+
|
1076
|
+
|
1077
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 17:34:58 +0900
|
1078
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1079
|
+
|
1080
|
+
|
1081
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 17:34:58 +0900
|
1082
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1083
|
+
|
1084
|
+
|
1085
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 17:34:58 +0900
|
1086
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1087
|
+
|
1088
|
+
|
1089
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 17:34:58 +0900
|
1090
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1091
|
+
|
1092
|
+
|
1093
|
+
Started GET "/a4nt/announcements" for 127.0.0.1 at 2013-03-18 17:35:00 +0900
|
1094
|
+
Processing by A4nt::AnnouncementsController#index as HTML
|
1095
|
+
[1m[35mA4nt::Announcement Load (0.2ms)[0m SELECT "a4nt_announcements".* FROM "a4nt_announcements"
|
1096
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/index.html.erb within layouts/a4nt/application (2.4ms)
|
1097
|
+
Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.2ms)
|
1098
|
+
|
1099
|
+
|
1100
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 17:35:00 +0900
|
1101
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1102
|
+
|
1103
|
+
|
1104
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 17:35:00 +0900
|
1105
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1106
|
+
|
1107
|
+
|
1108
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 17:35:00 +0900
|
1109
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1110
|
+
|
1111
|
+
|
1112
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 17:35:00 +0900
|
1113
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1114
|
+
|
1115
|
+
|
1116
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 17:35:00 +0900
|
1117
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1118
|
+
|
1119
|
+
|
1120
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 17:35:00 +0900
|
1121
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1122
|
+
|
1123
|
+
|
1124
|
+
Started GET "/a4nt/announcements/1/edit" for 127.0.0.1 at 2013-03-18 17:35:02 +0900
|
1125
|
+
Processing by A4nt::AnnouncementsController#edit as HTML
|
1126
|
+
Parameters: {"id"=>"1"}
|
1127
|
+
[1m[36mA4nt::Announcement Load (0.1ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1128
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/_form.html.erb (12.8ms)
|
1129
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/edit.html.erb within layouts/a4nt/application (14.6ms)
|
1130
|
+
Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.1ms)
|
1131
|
+
|
1132
|
+
|
1133
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 17:35:02 +0900
|
1134
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1135
|
+
|
1136
|
+
|
1137
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 17:35:02 +0900
|
1138
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1139
|
+
|
1140
|
+
|
1141
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 17:35:02 +0900
|
1142
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1143
|
+
|
1144
|
+
|
1145
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 17:35:02 +0900
|
1146
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1147
|
+
|
1148
|
+
|
1149
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 17:35:02 +0900
|
1150
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1151
|
+
|
1152
|
+
|
1153
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 17:35:02 +0900
|
1154
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1155
|
+
|
1156
|
+
|
1157
|
+
Started PUT "/a4nt/announcements/1" for 127.0.0.1 at 2013-03-18 17:35:16 +0900
|
1158
|
+
Processing by A4nt::AnnouncementsController#update as HTML
|
1159
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"lfnL+by0CmkFH9FQTszLKkQBmDjorMerRBh9NfBgsm8=", "announcement"=>{"title"=>"change", "body"=>"editable", "start_time(1i)"=>"2013", "start_time(2i)"=>"3", "start_time(3i)"=>"18", "start_time(4i)"=>"08", "start_time(5i)"=>"25", "end_time(1i)"=>"2013", "end_time(2i)"=>"3", "end_time(3i)"=>"20", "end_time(4i)"=>"08", "end_time(5i)"=>"25", "position"=>"2", "target"=>"nonmember"}, "commit"=>"Update Announcement", "id"=>"1"}
|
1160
|
+
[1m[35mA4nt::Announcement Load (0.2ms)[0m SELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1 [["id", "1"]]
|
1161
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1162
|
+
[1m[35m (0.3ms)[0m UPDATE "a4nt_announcements" SET "title" = 'change', "body" = 'editable', "position" = 2, "target" = 'nonmember', "end_time" = '2013-03-20 08:25:00.000000', "updated_at" = '2013-03-18 08:35:17.005841' WHERE "a4nt_announcements"."id" = 1
|
1163
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
1164
|
+
Redirected to http://localhost:3000/a4nt/announcements/1
|
1165
|
+
Completed 302 Found in 7ms (ActiveRecord: 1.6ms)
|
1166
|
+
|
1167
|
+
|
1168
|
+
Started GET "/a4nt/announcements/1" for 127.0.0.1 at 2013-03-18 17:35:17 +0900
|
1169
|
+
Processing by A4nt::AnnouncementsController#show as HTML
|
1170
|
+
Parameters: {"id"=>"1"}
|
1171
|
+
[1m[35mA4nt::Announcement Load (0.1ms)[0m SELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1 [["id", "1"]]
|
1172
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/show.html.erb within layouts/a4nt/application (0.7ms)
|
1173
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
|
1174
|
+
|
1175
|
+
|
1176
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 17:35:17 +0900
|
1177
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1178
|
+
|
1179
|
+
|
1180
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 17:35:17 +0900
|
1181
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1182
|
+
|
1183
|
+
|
1184
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 17:35:17 +0900
|
1185
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1186
|
+
|
1187
|
+
|
1188
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 17:35:17 +0900
|
1189
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1190
|
+
|
1191
|
+
|
1192
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 17:35:17 +0900
|
1193
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1194
|
+
|
1195
|
+
|
1196
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 17:35:17 +0900
|
1197
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1198
|
+
|
1199
|
+
|
1200
|
+
Started GET "/a4nt/announcements" for 127.0.0.1 at 2013-03-18 17:35:18 +0900
|
1201
|
+
Processing by A4nt::AnnouncementsController#index as HTML
|
1202
|
+
[1m[36mA4nt::Announcement Load (0.2ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" [0m
|
1203
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/index.html.erb within layouts/a4nt/application (2.1ms)
|
1204
|
+
Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.2ms)
|
1205
|
+
|
1206
|
+
|
1207
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 17:35:18 +0900
|
1208
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1209
|
+
|
1210
|
+
|
1211
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 17:35:18 +0900
|
1212
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1213
|
+
|
1214
|
+
|
1215
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 17:35:18 +0900
|
1216
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1217
|
+
|
1218
|
+
|
1219
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 17:35:18 +0900
|
1220
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1221
|
+
|
1222
|
+
|
1223
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 17:35:18 +0900
|
1224
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1225
|
+
|
1226
|
+
|
1227
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 17:35:18 +0900
|
1228
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1229
|
+
Connecting to database specified by database.yml
|
1230
|
+
Connecting to database specified by database.yml
|
1231
|
+
Connecting to database specified by database.yml
|
1232
|
+
|
1233
|
+
|
1234
|
+
Started GET "/a4nt/announcements" for 127.0.0.1 at 2013-03-18 17:48:12 +0900
|
1235
|
+
Connecting to database specified by database.yml
|
1236
|
+
Processing by A4nt::AnnouncementsController#index as HTML
|
1237
|
+
[1m[36mA4nt::Announcement Load (0.2ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" [0m
|
1238
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/index.html.erb within layouts/a4nt/application (8.5ms)
|
1239
|
+
Completed 200 OK in 107ms (Views: 55.9ms | ActiveRecord: 2.5ms)
|
1240
|
+
|
1241
|
+
|
1242
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 17:48:13 +0900
|
1243
|
+
Served asset /a4nt/application.css - 304 Not Modified (11ms)
|
1244
|
+
|
1245
|
+
|
1246
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 17:48:13 +0900
|
1247
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (2ms)
|
1248
|
+
|
1249
|
+
|
1250
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 17:48:13 +0900
|
1251
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
1252
|
+
|
1253
|
+
|
1254
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 17:48:13 +0900
|
1255
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (2ms)
|
1256
|
+
|
1257
|
+
|
1258
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 17:48:13 +0900
|
1259
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
1260
|
+
|
1261
|
+
|
1262
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 17:48:13 +0900
|
1263
|
+
Served asset /a4nt/application.js - 304 Not Modified (6ms)
|
1264
|
+
|
1265
|
+
|
1266
|
+
Started GET "/a4nt/announcements/2/edit" for 127.0.0.1 at 2013-03-18 17:48:14 +0900
|
1267
|
+
Processing by A4nt::AnnouncementsController#edit as HTML
|
1268
|
+
Parameters: {"id"=>"2"}
|
1269
|
+
[1m[35mA4nt::Announcement Load (0.3ms)[0m SELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1 [["id", "2"]]
|
1270
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/_form.html.erb (18.9ms)
|
1271
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/edit.html.erb within layouts/a4nt/application (24.4ms)
|
1272
|
+
Completed 200 OK in 30ms (Views: 28.5ms | ActiveRecord: 0.3ms)
|
1273
|
+
|
1274
|
+
|
1275
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 17:48:14 +0900
|
1276
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1277
|
+
|
1278
|
+
|
1279
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 17:48:14 +0900
|
1280
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1281
|
+
|
1282
|
+
|
1283
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 17:48:14 +0900
|
1284
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1285
|
+
|
1286
|
+
|
1287
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 17:48:14 +0900
|
1288
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1289
|
+
|
1290
|
+
|
1291
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 17:48:14 +0900
|
1292
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1293
|
+
|
1294
|
+
|
1295
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 17:48:14 +0900
|
1296
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1297
|
+
|
1298
|
+
|
1299
|
+
Started PUT "/a4nt/announcements/2" for 127.0.0.1 at 2013-03-18 17:48:29 +0900
|
1300
|
+
Processing by A4nt::AnnouncementsController#update as HTML
|
1301
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"lfnL+by0CmkFH9FQTszLKkQBmDjorMerRBh9NfBgsm8=", "announcement"=>{"title"=>"test", "body"=>"alluser", "start_time(1i)"=>"2013", "start_time(2i)"=>"2", "start_time(3i)"=>"18", "start_time(4i)"=>"08", "start_time(5i)"=>"34", "end_time(1i)"=>"2013", "end_time(2i)"=>"4", "end_time(3i)"=>"18", "end_time(4i)"=>"08", "end_time(5i)"=>"34", "position"=>"3", "target"=>"all"}, "commit"=>"Update Announcement", "id"=>"2"}
|
1302
|
+
[1m[36mA4nt::Announcement Load (0.1ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1303
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1304
|
+
[1m[36m (1.4ms)[0m [1mUPDATE "a4nt_announcements" SET "start_time" = '2013-02-18 08:34:00.000000', "end_time" = '2013-04-18 08:34:00.000000', "updated_at" = '2013-03-18 08:48:29.423528' WHERE "a4nt_announcements"."id" = 2[0m
|
1305
|
+
[1m[35m (0.8ms)[0m commit transaction
|
1306
|
+
Redirected to http://localhost:3000/a4nt/announcements/2
|
1307
|
+
Completed 302 Found in 32ms (ActiveRecord: 2.4ms)
|
1308
|
+
|
1309
|
+
|
1310
|
+
Started GET "/a4nt/announcements/2" for 127.0.0.1 at 2013-03-18 17:48:29 +0900
|
1311
|
+
Processing by A4nt::AnnouncementsController#show as HTML
|
1312
|
+
Parameters: {"id"=>"2"}
|
1313
|
+
[1m[36mA4nt::Announcement Load (0.1ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1314
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/show.html.erb within layouts/a4nt/application (1.4ms)
|
1315
|
+
Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.1ms)
|
1316
|
+
|
1317
|
+
|
1318
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 17:48:29 +0900
|
1319
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1320
|
+
|
1321
|
+
|
1322
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 17:48:29 +0900
|
1323
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1324
|
+
|
1325
|
+
|
1326
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 17:48:29 +0900
|
1327
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1328
|
+
|
1329
|
+
|
1330
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 17:48:29 +0900
|
1331
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1332
|
+
|
1333
|
+
|
1334
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 17:48:29 +0900
|
1335
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1336
|
+
|
1337
|
+
|
1338
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 17:48:29 +0900
|
1339
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1340
|
+
Connecting to database specified by database.yml
|
1341
|
+
|
1342
|
+
|
1343
|
+
Started GET "/a4nt/announcements/1/edit" for 127.0.0.1 at 2013-03-18 17:51:41 +0900
|
1344
|
+
Processing by A4nt::AnnouncementsController#edit as HTML
|
1345
|
+
Parameters: {"id"=>"1"}
|
1346
|
+
[1m[35mA4nt::Announcement Load (0.2ms)[0m SELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1 [["id", "1"]]
|
1347
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/_form.html.erb (10.1ms)
|
1348
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/edit.html.erb within layouts/a4nt/application (11.2ms)
|
1349
|
+
Completed 200 OK in 25ms (Views: 15.0ms | ActiveRecord: 0.6ms)
|
1350
|
+
|
1351
|
+
|
1352
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 17:51:41 +0900
|
1353
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1354
|
+
|
1355
|
+
|
1356
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 17:51:41 +0900
|
1357
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1358
|
+
|
1359
|
+
|
1360
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 17:51:41 +0900
|
1361
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1362
|
+
|
1363
|
+
|
1364
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 17:51:41 +0900
|
1365
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1366
|
+
|
1367
|
+
|
1368
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 17:51:41 +0900
|
1369
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1370
|
+
|
1371
|
+
|
1372
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 17:51:41 +0900
|
1373
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1374
|
+
|
1375
|
+
|
1376
|
+
Started PUT "/a4nt/announcements/1" for 127.0.0.1 at 2013-03-18 17:51:49 +0900
|
1377
|
+
Processing by A4nt::AnnouncementsController#update as HTML
|
1378
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"lfnL+by0CmkFH9FQTszLKkQBmDjorMerRBh9NfBgsm8=", "announcement"=>{"title"=>"change", "body"=>"editable", "start_time(1i)"=>"2013", "start_time(2i)"=>"2", "start_time(3i)"=>"18", "start_time(4i)"=>"08", "start_time(5i)"=>"25", "end_time(1i)"=>"2013", "end_time(2i)"=>"5", "end_time(3i)"=>"20", "end_time(4i)"=>"08", "end_time(5i)"=>"25", "position"=>"2", "target"=>"nonmember"}, "commit"=>"Update Announcement", "id"=>"1"}
|
1379
|
+
[1m[36mA4nt::Announcement Load (0.2ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1380
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1381
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "a4nt_announcements" SET "start_time" = '2013-02-18 08:25:00.000000', "end_time" = '2013-05-20 08:25:00.000000', "updated_at" = '2013-03-18 08:51:49.256510' WHERE "a4nt_announcements"."id" = 1[0m
|
1382
|
+
[1m[35m (0.8ms)[0m commit transaction
|
1383
|
+
Redirected to http://localhost:3000/a4nt/announcements/1
|
1384
|
+
Completed 302 Found in 7ms (ActiveRecord: 1.4ms)
|
1385
|
+
|
1386
|
+
|
1387
|
+
Started GET "/a4nt/announcements/1" for 127.0.0.1 at 2013-03-18 17:51:49 +0900
|
1388
|
+
Processing by A4nt::AnnouncementsController#show as HTML
|
1389
|
+
Parameters: {"id"=>"1"}
|
1390
|
+
[1m[36mA4nt::Announcement Load (0.1ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1391
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/show.html.erb within layouts/a4nt/application (0.9ms)
|
1392
|
+
Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.1ms)
|
1393
|
+
|
1394
|
+
|
1395
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 17:51:49 +0900
|
1396
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1397
|
+
|
1398
|
+
|
1399
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 17:51:49 +0900
|
1400
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1401
|
+
|
1402
|
+
|
1403
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 17:51:49 +0900
|
1404
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1405
|
+
|
1406
|
+
|
1407
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 17:51:49 +0900
|
1408
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1409
|
+
|
1410
|
+
|
1411
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 17:51:49 +0900
|
1412
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1413
|
+
|
1414
|
+
|
1415
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 17:51:49 +0900
|
1416
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1417
|
+
|
1418
|
+
|
1419
|
+
Started GET "/a4nt/announcements" for 127.0.0.1 at 2013-03-18 17:51:50 +0900
|
1420
|
+
Processing by A4nt::AnnouncementsController#index as HTML
|
1421
|
+
[1m[35mA4nt::Announcement Load (0.2ms)[0m SELECT "a4nt_announcements".* FROM "a4nt_announcements"
|
1422
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/index.html.erb within layouts/a4nt/application (3.0ms)
|
1423
|
+
Completed 200 OK in 9ms (Views: 7.9ms | ActiveRecord: 0.2ms)
|
1424
|
+
|
1425
|
+
|
1426
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 17:51:50 +0900
|
1427
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1428
|
+
|
1429
|
+
|
1430
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 17:51:50 +0900
|
1431
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1432
|
+
|
1433
|
+
|
1434
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 17:51:50 +0900
|
1435
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1436
|
+
|
1437
|
+
|
1438
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 17:51:50 +0900
|
1439
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1440
|
+
|
1441
|
+
|
1442
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 17:51:50 +0900
|
1443
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1444
|
+
|
1445
|
+
|
1446
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 17:51:50 +0900
|
1447
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1448
|
+
|
1449
|
+
|
1450
|
+
Started GET "/a4nt/announcements/new" for 127.0.0.1 at 2013-03-18 17:51:53 +0900
|
1451
|
+
Processing by A4nt::AnnouncementsController#new as HTML
|
1452
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/_form.html.erb (15.4ms)
|
1453
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/new.html.erb within layouts/a4nt/application (17.1ms)
|
1454
|
+
Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.0ms)
|
1455
|
+
|
1456
|
+
|
1457
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 17:51:53 +0900
|
1458
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1459
|
+
|
1460
|
+
|
1461
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 17:51:53 +0900
|
1462
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1463
|
+
|
1464
|
+
|
1465
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 17:51:53 +0900
|
1466
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1467
|
+
|
1468
|
+
|
1469
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 17:51:53 +0900
|
1470
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1471
|
+
|
1472
|
+
|
1473
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 17:51:53 +0900
|
1474
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1475
|
+
|
1476
|
+
|
1477
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 17:51:53 +0900
|
1478
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1479
|
+
|
1480
|
+
|
1481
|
+
Started POST "/a4nt/announcements" for 127.0.0.1 at 2013-03-18 17:52:04 +0900
|
1482
|
+
Processing by A4nt::AnnouncementsController#create as HTML
|
1483
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"lfnL+by0CmkFH9FQTszLKkQBmDjorMerRBh9NfBgsm8=", "announcement"=>{"title"=>"a", "body"=>"a", "start_time(1i)"=>"2013", "start_time(2i)"=>"2", "start_time(3i)"=>"18", "start_time(4i)"=>"08", "start_time(5i)"=>"51", "end_time(1i)"=>"2013", "end_time(2i)"=>"5", "end_time(3i)"=>"18", "end_time(4i)"=>"08", "end_time(5i)"=>"51", "position"=>"1", "target"=>"member"}, "commit"=>"Create Announcement"}
|
1484
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1485
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "a4nt_announcements" ("body", "created_at", "end_time", "position", "start_time", "target", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "a"], ["created_at", Mon, 18 Mar 2013 08:52:04 UTC +00:00], ["end_time", Sat, 18 May 2013 08:51:00 UTC +00:00], ["position", 1], ["start_time", Mon, 18 Feb 2013 08:51:00 UTC +00:00], ["target", "member"], ["title", "a"], ["updated_at", Mon, 18 Mar 2013 08:52:04 UTC +00:00]]
|
1486
|
+
[1m[36m (1.2ms)[0m [1mcommit transaction[0m
|
1487
|
+
Redirected to http://localhost:3000/a4nt/announcements/3
|
1488
|
+
Completed 302 Found in 6ms (ActiveRecord: 1.9ms)
|
1489
|
+
|
1490
|
+
|
1491
|
+
Started GET "/a4nt/announcements/3" for 127.0.0.1 at 2013-03-18 17:52:04 +0900
|
1492
|
+
Processing by A4nt::AnnouncementsController#show as HTML
|
1493
|
+
Parameters: {"id"=>"3"}
|
1494
|
+
[1m[35mA4nt::Announcement Load (0.1ms)[0m SELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1 [["id", "3"]]
|
1495
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/show.html.erb within layouts/a4nt/application (0.7ms)
|
1496
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
|
1497
|
+
|
1498
|
+
|
1499
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 17:52:04 +0900
|
1500
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1501
|
+
|
1502
|
+
|
1503
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 17:52:04 +0900
|
1504
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1505
|
+
|
1506
|
+
|
1507
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 17:52:04 +0900
|
1508
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1509
|
+
|
1510
|
+
|
1511
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 17:52:04 +0900
|
1512
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1513
|
+
|
1514
|
+
|
1515
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 17:52:04 +0900
|
1516
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1517
|
+
|
1518
|
+
|
1519
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 17:52:04 +0900
|
1520
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1521
|
+
|
1522
|
+
|
1523
|
+
Started GET "/a4nt/announcements" for 127.0.0.1 at 2013-03-18 17:52:06 +0900
|
1524
|
+
Processing by A4nt::AnnouncementsController#index as HTML
|
1525
|
+
[1m[36mA4nt::Announcement Load (0.2ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" [0m
|
1526
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/index.html.erb within layouts/a4nt/application (3.1ms)
|
1527
|
+
Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.2ms)
|
1528
|
+
|
1529
|
+
|
1530
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 17:52:06 +0900
|
1531
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1532
|
+
|
1533
|
+
|
1534
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 17:52:06 +0900
|
1535
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1536
|
+
|
1537
|
+
|
1538
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 17:52:06 +0900
|
1539
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1540
|
+
|
1541
|
+
|
1542
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 17:52:06 +0900
|
1543
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1544
|
+
|
1545
|
+
|
1546
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 17:52:06 +0900
|
1547
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1548
|
+
|
1549
|
+
|
1550
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 17:52:06 +0900
|
1551
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1552
|
+
Connecting to database specified by database.yml
|
1553
|
+
Connecting to database specified by database.yml
|
1554
|
+
|
1555
|
+
|
1556
|
+
Started GET "/a4nt/announcements" for 127.0.0.1 at 2013-03-18 19:16:48 +0900
|
1557
|
+
Processing by A4nt::AnnouncementsController#index as HTML
|
1558
|
+
[1m[35mA4nt::Announcement Load (0.9ms)[0m SELECT "a4nt_announcements".* FROM "a4nt_announcements"
|
1559
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/index.html.erb within layouts/a4nt/application (250.8ms)
|
1560
|
+
Completed 200 OK in 347ms (Views: 274.0ms | ActiveRecord: 4.6ms)
|
1561
|
+
|
1562
|
+
|
1563
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 19:16:48 +0900
|
1564
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1565
|
+
|
1566
|
+
|
1567
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 19:16:49 +0900
|
1568
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1569
|
+
|
1570
|
+
|
1571
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 19:16:49 +0900
|
1572
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1573
|
+
|
1574
|
+
|
1575
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 19:16:49 +0900
|
1576
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1577
|
+
|
1578
|
+
|
1579
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 19:16:49 +0900
|
1580
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1581
|
+
|
1582
|
+
|
1583
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 19:16:49 +0900
|
1584
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1585
|
+
|
1586
|
+
|
1587
|
+
Started GET "/a4nt/announcements/new" for 127.0.0.1 at 2013-03-18 19:16:52 +0900
|
1588
|
+
Processing by A4nt::AnnouncementsController#new as HTML
|
1589
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/_form.html.erb (14.8ms)
|
1590
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/new.html.erb within layouts/a4nt/application (17.4ms)
|
1591
|
+
Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.0ms)
|
1592
|
+
|
1593
|
+
|
1594
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 19:16:52 +0900
|
1595
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1596
|
+
|
1597
|
+
|
1598
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 19:16:52 +0900
|
1599
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1600
|
+
|
1601
|
+
|
1602
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 19:16:52 +0900
|
1603
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1604
|
+
|
1605
|
+
|
1606
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 19:16:52 +0900
|
1607
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1608
|
+
|
1609
|
+
|
1610
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 19:16:52 +0900
|
1611
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1612
|
+
|
1613
|
+
|
1614
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 19:16:52 +0900
|
1615
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1616
|
+
|
1617
|
+
|
1618
|
+
Started POST "/a4nt/announcements" for 127.0.0.1 at 2013-03-18 19:17:04 +0900
|
1619
|
+
Processing by A4nt::AnnouncementsController#create as HTML
|
1620
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"lfnL+by0CmkFH9FQTszLKkQBmDjorMerRBh9NfBgsm8=", "announcement"=>{"title"=>"aaa", "body"=>"bbb", "start_time(1i)"=>"2013", "start_time(2i)"=>"3", "start_time(3i)"=>"18", "start_time(4i)"=>"10", "start_time(5i)"=>"16", "end_time(1i)"=>"2013", "end_time(2i)"=>"7", "end_time(3i)"=>"18", "end_time(4i)"=>"10", "end_time(5i)"=>"16", "position"=>"2", "target"=>"nonmember"}, "commit"=>"Create Announcement"}
|
1621
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1622
|
+
[1m[35mSQL (1.2ms)[0m INSERT INTO "a4nt_announcements" ("body", "created_at", "end_time", "position", "start_time", "target", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "bbb"], ["created_at", Mon, 18 Mar 2013 10:17:04 UTC +00:00], ["end_time", Thu, 18 Jul 2013 10:16:00 UTC +00:00], ["position", 2], ["start_time", Mon, 18 Mar 2013 10:16:00 UTC +00:00], ["target", "nonmember"], ["title", "aaa"], ["updated_at", Mon, 18 Mar 2013 10:17:04 UTC +00:00]]
|
1623
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
1624
|
+
Redirected to http://localhost:3000/a4nt/announcements/4
|
1625
|
+
Completed 302 Found in 8ms (ActiveRecord: 2.2ms)
|
1626
|
+
|
1627
|
+
|
1628
|
+
Started GET "/a4nt/announcements/4" for 127.0.0.1 at 2013-03-18 19:17:04 +0900
|
1629
|
+
Processing by A4nt::AnnouncementsController#show as HTML
|
1630
|
+
Parameters: {"id"=>"4"}
|
1631
|
+
[1m[35mA4nt::Announcement Load (0.2ms)[0m SELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1 [["id", "4"]]
|
1632
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/show.html.erb within layouts/a4nt/application (0.9ms)
|
1633
|
+
Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.2ms)
|
1634
|
+
|
1635
|
+
|
1636
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 19:17:04 +0900
|
1637
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1638
|
+
|
1639
|
+
|
1640
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 19:17:04 +0900
|
1641
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1642
|
+
|
1643
|
+
|
1644
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:04 +0900
|
1645
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1646
|
+
|
1647
|
+
|
1648
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:04 +0900
|
1649
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1650
|
+
|
1651
|
+
|
1652
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:04 +0900
|
1653
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1654
|
+
|
1655
|
+
|
1656
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:04 +0900
|
1657
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1658
|
+
|
1659
|
+
|
1660
|
+
Started GET "/a4nt/announcements/4/edit" for 127.0.0.1 at 2013-03-18 19:17:06 +0900
|
1661
|
+
Processing by A4nt::AnnouncementsController#edit as HTML
|
1662
|
+
Parameters: {"id"=>"4"}
|
1663
|
+
[1m[36mA4nt::Announcement Load (0.1ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1[0m [["id", "4"]]
|
1664
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/_form.html.erb (11.4ms)
|
1665
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/edit.html.erb within layouts/a4nt/application (13.7ms)
|
1666
|
+
Completed 200 OK in 20ms (Views: 18.2ms | ActiveRecord: 0.1ms)
|
1667
|
+
|
1668
|
+
|
1669
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 19:17:06 +0900
|
1670
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1671
|
+
|
1672
|
+
|
1673
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:06 +0900
|
1674
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1675
|
+
|
1676
|
+
|
1677
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 19:17:06 +0900
|
1678
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1679
|
+
|
1680
|
+
|
1681
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:06 +0900
|
1682
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1683
|
+
|
1684
|
+
|
1685
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:06 +0900
|
1686
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1687
|
+
|
1688
|
+
|
1689
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:06 +0900
|
1690
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1691
|
+
|
1692
|
+
|
1693
|
+
Started PUT "/a4nt/announcements/4" for 127.0.0.1 at 2013-03-18 19:17:10 +0900
|
1694
|
+
Processing by A4nt::AnnouncementsController#update as HTML
|
1695
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"lfnL+by0CmkFH9FQTszLKkQBmDjorMerRBh9NfBgsm8=", "announcement"=>{"title"=>"aaa", "body"=>"bbb", "start_time(1i)"=>"2013", "start_time(2i)"=>"3", "start_time(3i)"=>"18", "start_time(4i)"=>"10", "start_time(5i)"=>"16", "end_time(1i)"=>"2013", "end_time(2i)"=>"7", "end_time(3i)"=>"18", "end_time(4i)"=>"10", "end_time(5i)"=>"16", "position"=>"2", "target"=>"member"}, "commit"=>"Update Announcement", "id"=>"4"}
|
1696
|
+
[1m[35mA4nt::Announcement Load (0.1ms)[0m SELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1 [["id", "4"]]
|
1697
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1698
|
+
[1m[35m (0.4ms)[0m UPDATE "a4nt_announcements" SET "target" = 'member', "updated_at" = '2013-03-18 10:17:10.476802' WHERE "a4nt_announcements"."id" = 4
|
1699
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
1700
|
+
Redirected to http://localhost:3000/a4nt/announcements/4
|
1701
|
+
Completed 302 Found in 7ms (ActiveRecord: 1.2ms)
|
1702
|
+
|
1703
|
+
|
1704
|
+
Started GET "/a4nt/announcements/4" for 127.0.0.1 at 2013-03-18 19:17:10 +0900
|
1705
|
+
Processing by A4nt::AnnouncementsController#show as HTML
|
1706
|
+
Parameters: {"id"=>"4"}
|
1707
|
+
[1m[35mA4nt::Announcement Load (0.1ms)[0m SELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1 [["id", "4"]]
|
1708
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/show.html.erb within layouts/a4nt/application (1.0ms)
|
1709
|
+
Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
|
1710
|
+
|
1711
|
+
|
1712
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 19:17:10 +0900
|
1713
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1714
|
+
|
1715
|
+
|
1716
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:10 +0900
|
1717
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1718
|
+
|
1719
|
+
|
1720
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:10 +0900
|
1721
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1722
|
+
|
1723
|
+
|
1724
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:10 +0900
|
1725
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1726
|
+
|
1727
|
+
|
1728
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:10 +0900
|
1729
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1730
|
+
|
1731
|
+
|
1732
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 19:17:10 +0900
|
1733
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1734
|
+
|
1735
|
+
|
1736
|
+
Started GET "/a4nt/announcements" for 127.0.0.1 at 2013-03-18 19:17:11 +0900
|
1737
|
+
Processing by A4nt::AnnouncementsController#index as HTML
|
1738
|
+
[1m[36mA4nt::Announcement Load (0.2ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" [0m
|
1739
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/index.html.erb within layouts/a4nt/application (3.6ms)
|
1740
|
+
Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.2ms)
|
1741
|
+
|
1742
|
+
|
1743
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 19:17:11 +0900
|
1744
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1745
|
+
|
1746
|
+
|
1747
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:11 +0900
|
1748
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1749
|
+
|
1750
|
+
|
1751
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:11 +0900
|
1752
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1753
|
+
|
1754
|
+
|
1755
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 19:17:11 +0900
|
1756
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1757
|
+
|
1758
|
+
|
1759
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:11 +0900
|
1760
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1761
|
+
|
1762
|
+
|
1763
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:11 +0900
|
1764
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1765
|
+
|
1766
|
+
|
1767
|
+
Started GET "/a4nt/announcements/1" for 127.0.0.1 at 2013-03-18 19:17:15 +0900
|
1768
|
+
Processing by A4nt::AnnouncementsController#show as HTML
|
1769
|
+
Parameters: {"id"=>"1"}
|
1770
|
+
[1m[35mA4nt::Announcement Load (0.2ms)[0m SELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1 [["id", "1"]]
|
1771
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/show.html.erb within layouts/a4nt/application (1.1ms)
|
1772
|
+
Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.2ms)
|
1773
|
+
|
1774
|
+
|
1775
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 19:17:16 +0900
|
1776
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1777
|
+
|
1778
|
+
|
1779
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:16 +0900
|
1780
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1781
|
+
|
1782
|
+
|
1783
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 19:17:16 +0900
|
1784
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1785
|
+
|
1786
|
+
|
1787
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:16 +0900
|
1788
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1789
|
+
|
1790
|
+
|
1791
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:16 +0900
|
1792
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1793
|
+
|
1794
|
+
|
1795
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:16 +0900
|
1796
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1797
|
+
|
1798
|
+
|
1799
|
+
Started GET "/a4nt/announcements" for 127.0.0.1 at 2013-03-18 19:17:18 +0900
|
1800
|
+
Processing by A4nt::AnnouncementsController#index as HTML
|
1801
|
+
[1m[36mA4nt::Announcement Load (0.2ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" [0m
|
1802
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/index.html.erb within layouts/a4nt/application (3.7ms)
|
1803
|
+
Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.2ms)
|
1804
|
+
|
1805
|
+
|
1806
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 19:17:18 +0900
|
1807
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1808
|
+
|
1809
|
+
|
1810
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 19:17:18 +0900
|
1811
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1812
|
+
|
1813
|
+
|
1814
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:18 +0900
|
1815
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1816
|
+
|
1817
|
+
|
1818
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:18 +0900
|
1819
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1820
|
+
|
1821
|
+
|
1822
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:18 +0900
|
1823
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1824
|
+
|
1825
|
+
|
1826
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 19:17:18 +0900
|
1827
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1828
|
+
Connecting to database specified by database.yml
|
1829
|
+
Connecting to database specified by database.yml
|
1830
|
+
Connecting to database specified by database.yml
|
1831
|
+
[1m[36m (1.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
1832
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
1833
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "a4nt_announcements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "body" varchar(255) DEFAULT '' NOT NULL, "start_time" datetime NOT NULL, "end_time" datetime NOT NULL, "position" integer NOT NULL, "target" varchar(255) DEFAULT 'all' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
1834
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
1835
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1836
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1837
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130314151144')[0m
|
1838
|
+
Connecting to database specified by database.yml
|
1839
|
+
[1m[36m (1.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
1840
|
+
Migrating to CreateA4ntAnnouncements (20130314151144)
|
1841
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1842
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
1843
|
+
Connecting to database specified by database.yml
|
1844
|
+
[1m[36m (1.0ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
1845
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
1846
|
+
Migrating to CreateA4ntAnnouncements (20130314151144)
|
1847
|
+
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
1848
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1849
|
+
[1m[36m (0.5ms)[0m [1mDROP TABLE "a4nt_announcements"[0m
|
1850
|
+
[1m[35m (0.1ms)[0m DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20130314151144'
|
1851
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1852
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
1853
|
+
Connecting to database specified by database.yml
|
1854
|
+
[1m[36m (1.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
1855
|
+
Migrating to CreateA4ntAnnouncements (20130314151144)
|
1856
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
1857
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1858
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "a4nt_announcements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "body" varchar(255) DEFAULT '' NOT NULL, "start_time" datetime NOT NULL, "end_time" datetime NOT NULL, "position" integer NOT NULL, "target" varchar(255) DEFAULT 'all' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
1859
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130314151144')[0m
|
1860
|
+
[1m[35m (2.1ms)[0m commit transaction
|
1861
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
1862
|
+
|
1863
|
+
|
1864
|
+
Started GET "/a4nt/announcements" for 127.0.0.1 at 2013-03-18 20:47:26 +0900
|
1865
|
+
Processing by A4nt::AnnouncementsController#index as HTML
|
1866
|
+
[1m[35mA4nt::Announcement Load (0.1ms)[0m SELECT "a4nt_announcements".* FROM "a4nt_announcements"
|
1867
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/index.html.erb within layouts/a4nt/application (0.5ms)
|
1868
|
+
Completed 200 OK in 8ms (Views: 6.2ms | ActiveRecord: 0.6ms)
|
1869
|
+
|
1870
|
+
|
1871
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 20:47:27 +0900
|
1872
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1873
|
+
|
1874
|
+
|
1875
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 20:47:27 +0900
|
1876
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1877
|
+
|
1878
|
+
|
1879
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:27 +0900
|
1880
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1881
|
+
|
1882
|
+
|
1883
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:27 +0900
|
1884
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1885
|
+
|
1886
|
+
|
1887
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:27 +0900
|
1888
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1889
|
+
|
1890
|
+
|
1891
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:27 +0900
|
1892
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1893
|
+
|
1894
|
+
|
1895
|
+
Started GET "/a4nt/announcements/new" for 127.0.0.1 at 2013-03-18 20:47:28 +0900
|
1896
|
+
Processing by A4nt::AnnouncementsController#new as HTML
|
1897
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/_form.html.erb (12.8ms)
|
1898
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/new.html.erb within layouts/a4nt/application (13.7ms)
|
1899
|
+
Completed 200 OK in 52ms (Views: 17.5ms | ActiveRecord: 0.0ms)
|
1900
|
+
|
1901
|
+
|
1902
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 20:47:28 +0900
|
1903
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1904
|
+
|
1905
|
+
|
1906
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 20:47:28 +0900
|
1907
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1908
|
+
|
1909
|
+
|
1910
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:28 +0900
|
1911
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1912
|
+
|
1913
|
+
|
1914
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:28 +0900
|
1915
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1916
|
+
|
1917
|
+
|
1918
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:28 +0900
|
1919
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1920
|
+
|
1921
|
+
|
1922
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:28 +0900
|
1923
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1924
|
+
|
1925
|
+
|
1926
|
+
Started POST "/a4nt/announcements" for 127.0.0.1 at 2013-03-18 20:47:38 +0900
|
1927
|
+
Processing by A4nt::AnnouncementsController#create as HTML
|
1928
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"lfnL+by0CmkFH9FQTszLKkQBmDjorMerRBh9NfBgsm8=", "announcement"=>{"title"=>"a", "body"=>"aa", "start_time(1i)"=>"2013", "start_time(2i)"=>"3", "start_time(3i)"=>"18", "start_time(4i)"=>"11", "start_time(5i)"=>"47", "end_time(1i)"=>"2013", "end_time(2i)"=>"4", "end_time(3i)"=>"18", "end_time(4i)"=>"11", "end_time(5i)"=>"47", "position"=>"1", "target"=>"all"}, "commit"=>"Create Announcement"}
|
1929
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1930
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "a4nt_announcements" ("body", "created_at", "end_time", "position", "start_time", "target", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "aa"], ["created_at", Mon, 18 Mar 2013 11:47:38 UTC +00:00], ["end_time", Thu, 18 Apr 2013 11:47:00 UTC +00:00], ["position", 1], ["start_time", Mon, 18 Mar 2013 11:47:00 UTC +00:00], ["target", "all"], ["title", "a"], ["updated_at", Mon, 18 Mar 2013 11:47:38 UTC +00:00]]
|
1931
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
1932
|
+
Redirected to http://localhost:3000/a4nt/announcements/1
|
1933
|
+
Completed 302 Found in 7ms (ActiveRecord: 1.6ms)
|
1934
|
+
|
1935
|
+
|
1936
|
+
Started GET "/a4nt/announcements/1" for 127.0.0.1 at 2013-03-18 20:47:38 +0900
|
1937
|
+
Processing by A4nt::AnnouncementsController#show as HTML
|
1938
|
+
Parameters: {"id"=>"1"}
|
1939
|
+
[1m[35mA4nt::Announcement Load (0.2ms)[0m SELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1 [["id", "1"]]
|
1940
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/show.html.erb within layouts/a4nt/application (0.8ms)
|
1941
|
+
Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.2ms)
|
1942
|
+
|
1943
|
+
|
1944
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 20:47:38 +0900
|
1945
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1946
|
+
|
1947
|
+
|
1948
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 20:47:38 +0900
|
1949
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1950
|
+
|
1951
|
+
|
1952
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:38 +0900
|
1953
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1954
|
+
|
1955
|
+
|
1956
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:38 +0900
|
1957
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1958
|
+
|
1959
|
+
|
1960
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:38 +0900
|
1961
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1962
|
+
|
1963
|
+
|
1964
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:38 +0900
|
1965
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1966
|
+
|
1967
|
+
|
1968
|
+
Started GET "/a4nt/announcements" for 127.0.0.1 at 2013-03-18 20:47:39 +0900
|
1969
|
+
Processing by A4nt::AnnouncementsController#index as HTML
|
1970
|
+
[1m[36mA4nt::Announcement Load (0.2ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" [0m
|
1971
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/index.html.erb within layouts/a4nt/application (1.3ms)
|
1972
|
+
Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms)
|
1973
|
+
|
1974
|
+
|
1975
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 20:47:39 +0900
|
1976
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
1977
|
+
|
1978
|
+
|
1979
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:39 +0900
|
1980
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
1981
|
+
|
1982
|
+
|
1983
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:39 +0900
|
1984
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1985
|
+
|
1986
|
+
|
1987
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:39 +0900
|
1988
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
1989
|
+
|
1990
|
+
|
1991
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:39 +0900
|
1992
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1993
|
+
|
1994
|
+
|
1995
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 20:47:39 +0900
|
1996
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
1997
|
+
|
1998
|
+
|
1999
|
+
Started GET "/a4nt/announcements/new" for 127.0.0.1 at 2013-03-18 20:47:41 +0900
|
2000
|
+
Processing by A4nt::AnnouncementsController#new as HTML
|
2001
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/_form.html.erb (10.5ms)
|
2002
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/new.html.erb within layouts/a4nt/application (11.3ms)
|
2003
|
+
Completed 200 OK in 15ms (Views: 15.0ms | ActiveRecord: 0.0ms)
|
2004
|
+
|
2005
|
+
|
2006
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 20:47:41 +0900
|
2007
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
2008
|
+
|
2009
|
+
|
2010
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:41 +0900
|
2011
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2012
|
+
|
2013
|
+
|
2014
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:41 +0900
|
2015
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2016
|
+
|
2017
|
+
|
2018
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 20:47:41 +0900
|
2019
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
2020
|
+
|
2021
|
+
|
2022
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:41 +0900
|
2023
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
2024
|
+
|
2025
|
+
|
2026
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:41 +0900
|
2027
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
2028
|
+
|
2029
|
+
|
2030
|
+
Started POST "/a4nt/announcements" for 127.0.0.1 at 2013-03-18 20:47:50 +0900
|
2031
|
+
Processing by A4nt::AnnouncementsController#create as HTML
|
2032
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"lfnL+by0CmkFH9FQTszLKkQBmDjorMerRBh9NfBgsm8=", "announcement"=>{"title"=>"b", "body"=>"bb", "start_time(1i)"=>"2013", "start_time(2i)"=>"3", "start_time(3i)"=>"18", "start_time(4i)"=>"11", "start_time(5i)"=>"47", "end_time(1i)"=>"2013", "end_time(2i)"=>"4", "end_time(3i)"=>"18", "end_time(4i)"=>"11", "end_time(5i)"=>"47", "position"=>"2", "target"=>"nonmember"}, "commit"=>"Create Announcement"}
|
2033
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2034
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "a4nt_announcements" ("body", "created_at", "end_time", "position", "start_time", "target", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["body", "bb"], ["created_at", Mon, 18 Mar 2013 11:47:50 UTC +00:00], ["end_time", Thu, 18 Apr 2013 11:47:00 UTC +00:00], ["position", 2], ["start_time", Mon, 18 Mar 2013 11:47:00 UTC +00:00], ["target", "nonmember"], ["title", "b"], ["updated_at", Mon, 18 Mar 2013 11:47:50 UTC +00:00]]
|
2035
|
+
[1m[35m (1.0ms)[0m commit transaction
|
2036
|
+
Redirected to http://localhost:3000/a4nt/announcements/2
|
2037
|
+
Completed 302 Found in 17ms (ActiveRecord: 1.5ms)
|
2038
|
+
|
2039
|
+
|
2040
|
+
Started GET "/a4nt/announcements/2" for 127.0.0.1 at 2013-03-18 20:47:50 +0900
|
2041
|
+
Processing by A4nt::AnnouncementsController#show as HTML
|
2042
|
+
Parameters: {"id"=>"2"}
|
2043
|
+
[1m[36mA4nt::Announcement Load (0.1ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1[0m [["id", "2"]]
|
2044
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/show.html.erb within layouts/a4nt/application (0.7ms)
|
2045
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
2046
|
+
|
2047
|
+
|
2048
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 20:47:50 +0900
|
2049
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
2050
|
+
|
2051
|
+
|
2052
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 20:47:50 +0900
|
2053
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
2054
|
+
|
2055
|
+
|
2056
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:50 +0900
|
2057
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2058
|
+
|
2059
|
+
|
2060
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:50 +0900
|
2061
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
2062
|
+
|
2063
|
+
|
2064
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:50 +0900
|
2065
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2066
|
+
|
2067
|
+
|
2068
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:50 +0900
|
2069
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
2070
|
+
|
2071
|
+
|
2072
|
+
Started GET "/a4nt/announcements" for 127.0.0.1 at 2013-03-18 20:47:51 +0900
|
2073
|
+
Processing by A4nt::AnnouncementsController#index as HTML
|
2074
|
+
[1m[35mA4nt::Announcement Load (0.2ms)[0m SELECT "a4nt_announcements".* FROM "a4nt_announcements"
|
2075
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/index.html.erb within layouts/a4nt/application (2.3ms)
|
2076
|
+
Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.2ms)
|
2077
|
+
|
2078
|
+
|
2079
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 20:47:51 +0900
|
2080
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
2081
|
+
|
2082
|
+
|
2083
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:51 +0900
|
2084
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2085
|
+
|
2086
|
+
|
2087
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 20:47:51 +0900
|
2088
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
2089
|
+
|
2090
|
+
|
2091
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:51 +0900
|
2092
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
2093
|
+
|
2094
|
+
|
2095
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:51 +0900
|
2096
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
2097
|
+
|
2098
|
+
|
2099
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:51 +0900
|
2100
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2101
|
+
|
2102
|
+
|
2103
|
+
Started GET "/a4nt/announcements/new" for 127.0.0.1 at 2013-03-18 20:47:53 +0900
|
2104
|
+
Processing by A4nt::AnnouncementsController#new as HTML
|
2105
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/_form.html.erb (10.2ms)
|
2106
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/new.html.erb within layouts/a4nt/application (11.3ms)
|
2107
|
+
Completed 200 OK in 15ms (Views: 15.1ms | ActiveRecord: 0.0ms)
|
2108
|
+
|
2109
|
+
|
2110
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 20:47:53 +0900
|
2111
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
2112
|
+
|
2113
|
+
|
2114
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:53 +0900
|
2115
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2116
|
+
|
2117
|
+
|
2118
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:53 +0900
|
2119
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2120
|
+
|
2121
|
+
|
2122
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:53 +0900
|
2123
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
2124
|
+
|
2125
|
+
|
2126
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 20:47:53 +0900
|
2127
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
2128
|
+
|
2129
|
+
|
2130
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 20:47:53 +0900
|
2131
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
2132
|
+
|
2133
|
+
|
2134
|
+
Started POST "/a4nt/announcements" for 127.0.0.1 at 2013-03-18 20:48:02 +0900
|
2135
|
+
Processing by A4nt::AnnouncementsController#create as HTML
|
2136
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"lfnL+by0CmkFH9FQTszLKkQBmDjorMerRBh9NfBgsm8=", "announcement"=>{"title"=>"c", "body"=>"cc", "start_time(1i)"=>"2013", "start_time(2i)"=>"3", "start_time(3i)"=>"18", "start_time(4i)"=>"11", "start_time(5i)"=>"47", "end_time(1i)"=>"2013", "end_time(2i)"=>"5", "end_time(3i)"=>"18", "end_time(4i)"=>"11", "end_time(5i)"=>"47", "position"=>"3", "target"=>"member"}, "commit"=>"Create Announcement"}
|
2137
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2138
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "a4nt_announcements" ("body", "created_at", "end_time", "position", "start_time", "target", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "cc"], ["created_at", Mon, 18 Mar 2013 11:48:02 UTC +00:00], ["end_time", Sat, 18 May 2013 11:47:00 UTC +00:00], ["position", 3], ["start_time", Mon, 18 Mar 2013 11:47:00 UTC +00:00], ["target", "member"], ["title", "c"], ["updated_at", Mon, 18 Mar 2013 11:48:02 UTC +00:00]]
|
2139
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
2140
|
+
Redirected to http://localhost:3000/a4nt/announcements/3
|
2141
|
+
Completed 302 Found in 4ms (ActiveRecord: 1.4ms)
|
2142
|
+
|
2143
|
+
|
2144
|
+
Started GET "/a4nt/announcements/3" for 127.0.0.1 at 2013-03-18 20:48:02 +0900
|
2145
|
+
Processing by A4nt::AnnouncementsController#show as HTML
|
2146
|
+
Parameters: {"id"=>"3"}
|
2147
|
+
[1m[35mA4nt::Announcement Load (0.2ms)[0m SELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1 [["id", "3"]]
|
2148
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/show.html.erb within layouts/a4nt/application (0.7ms)
|
2149
|
+
Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
|
2150
|
+
|
2151
|
+
|
2152
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 20:48:02 +0900
|
2153
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
2154
|
+
|
2155
|
+
|
2156
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 20:48:02 +0900
|
2157
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2158
|
+
|
2159
|
+
|
2160
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 20:48:02 +0900
|
2161
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
2162
|
+
|
2163
|
+
|
2164
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 20:48:02 +0900
|
2165
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
2166
|
+
|
2167
|
+
|
2168
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 20:48:02 +0900
|
2169
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
2170
|
+
|
2171
|
+
|
2172
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 20:48:02 +0900
|
2173
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2174
|
+
|
2175
|
+
|
2176
|
+
Started GET "/a4nt/announcements" for 127.0.0.1 at 2013-03-18 20:48:04 +0900
|
2177
|
+
Processing by A4nt::AnnouncementsController#index as HTML
|
2178
|
+
[1m[36mA4nt::Announcement Load (0.2ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" [0m
|
2179
|
+
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/index.html.erb within layouts/a4nt/application (3.9ms)
|
2180
|
+
Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.2ms)
|
2181
|
+
|
2182
|
+
|
2183
|
+
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-18 20:48:04 +0900
|
2184
|
+
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
2185
|
+
|
2186
|
+
|
2187
|
+
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-18 20:48:04 +0900
|
2188
|
+
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
2189
|
+
|
2190
|
+
|
2191
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 20:48:04 +0900
|
2192
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2193
|
+
|
2194
|
+
|
2195
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 20:48:04 +0900
|
2196
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2197
|
+
|
2198
|
+
|
2199
|
+
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-18 20:48:04 +0900
|
2200
|
+
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
2201
|
+
|
2202
|
+
|
2203
|
+
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-18 20:48:04 +0900
|
2204
|
+
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
2205
|
+
Connecting to database specified by database.yml
|
2206
|
+
Connecting to database specified by database.yml
|