a4nt 1.0.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +1 -1
- data/README.md +19 -2
- data/Rakefile +1 -1
- data/app/controllers/a4nt/announcements_controller.rb +8 -2
- data/app/models/a4nt/announcement.rb +0 -2
- data/lib/a4nt/version.rb +1 -1
- data/test/dummy/log/development.log +0 -2205
- data/test/dummy/log/test.log +435 -64
- data/test/dummy_rails4/README.rdoc +28 -0
- data/test/dummy_rails4/Rakefile +6 -0
- data/test/dummy_rails4/app/assets/javascripts/application.js +13 -0
- data/test/dummy_rails4/app/assets/stylesheets/application.css +13 -0
- data/test/dummy_rails4/app/controllers/application_controller.rb +5 -0
- data/test/dummy_rails4/app/helpers/application_helper.rb +2 -0
- data/test/dummy_rails4/app/views/layouts/application.html.erb +14 -0
- data/test/dummy_rails4/bin/bundle +3 -0
- data/test/dummy_rails4/bin/rails +4 -0
- data/test/dummy_rails4/bin/rake +4 -0
- data/test/dummy_rails4/config.ru +4 -0
- data/test/dummy_rails4/config/application.rb +23 -0
- data/test/dummy_rails4/config/boot.rb +5 -0
- data/test/dummy_rails4/config/database.yml +25 -0
- data/test/dummy_rails4/config/environment.rb +5 -0
- data/test/dummy_rails4/config/environments/development.rb +29 -0
- data/test/dummy_rails4/config/environments/production.rb +80 -0
- data/test/dummy_rails4/config/environments/test.rb +36 -0
- data/test/dummy_rails4/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy_rails4/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy_rails4/config/initializers/inflections.rb +16 -0
- data/test/dummy_rails4/config/initializers/mime_types.rb +5 -0
- data/test/dummy_rails4/config/initializers/secret_token.rb +12 -0
- data/test/dummy_rails4/config/initializers/session_store.rb +3 -0
- data/test/dummy_rails4/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy_rails4/config/locales/en.yml +23 -0
- data/test/dummy_rails4/config/routes.rb +4 -0
- data/test/dummy_rails4/db/schema.rb +27 -0
- data/test/{dummy → dummy_rails4}/db/test.sqlite3 +0 -0
- data/test/dummy_rails4/log/test.log +884 -0
- data/test/dummy_rails4/public/404.html +58 -0
- data/test/dummy_rails4/public/422.html +58 -0
- data/test/dummy_rails4/public/500.html +57 -0
- data/test/dummy_rails4/public/favicon.ico +0 -0
- data/test/dummy_rails4/tmp/cache/assets/test/sprockets/00945d57ebe03c366903bdea3f280fdd +0 -0
- data/test/{dummy/tmp/cache/assets/CD0/410/sprockets%2F4610e3716682bd81225d1af060dec17e → dummy_rails4/tmp/cache/assets/test/sprockets/1748fda09da1ed4f51ad565fc7df5a52} +0 -0
- data/test/{dummy/tmp/cache/assets/CD1/7A0/sprockets%2F1c8986854dbe744776f98066ddea5148 → dummy_rails4/tmp/cache/assets/test/sprockets/2537ccbe4b13249c7f51e21ef0180b2b} +0 -0
- data/test/dummy_rails4/tmp/cache/assets/test/sprockets/35a3e1d53221b566385d55604b1f2f81 +0 -0
- data/test/{dummy/tmp/cache/assets/DCF/230/sprockets%2F1748fda09da1ed4f51ad565fc7df5a52 → dummy_rails4/tmp/cache/assets/test/sprockets/4610e3716682bd81225d1af060dec17e} +0 -0
- data/test/{dummy/tmp/cache/assets/EC3/660/sprockets%2F6dfdc90eece35f8b7e00fdd21b9ecfcd → dummy_rails4/tmp/cache/assets/test/sprockets/6dfdc90eece35f8b7e00fdd21b9ecfcd} +0 -0
- data/test/dummy_rails4/tmp/cache/assets/test/sprockets/933c4e72c3d556f7f7225ddbde1d1c7e +0 -0
- data/test/{dummy/tmp/cache/assets/E16/A70/sprockets%2Fd3cc19a7697edd9efe18d8f92f0efe30 → dummy_rails4/tmp/cache/assets/test/sprockets/990e4858f384293a7f3dfe04f7b86b4a} +0 -0
- data/test/{dummy/tmp/cache/assets/E95/420/sprockets%2Fd6ce1bdc5f9e8e55a7dae3b2fcf82ed2 → dummy_rails4/tmp/cache/assets/test/sprockets/affaf5c0a2f6f6bd21efb946fb357b7d} +0 -0
- data/test/{dummy/tmp/cache/assets/DC0/880/sprockets%2Fc14ba2e3509e7ab8b1a33d276ed4d5dc → dummy_rails4/tmp/cache/assets/test/sprockets/c14ba2e3509e7ab8b1a33d276ed4d5dc} +0 -0
- data/test/dummy_rails4/tmp/cache/assets/test/sprockets/dc903ff3b8bd770c927bcb4e7bb48387 +0 -0
- data/test/dummy_rails4/tmp/cache/assets/test/sprockets/e9e458ddec5a8f3dcbe083bf77b923ab +0 -0
- data/test/dummy_rails4/tmp/cache/assets/test/sprockets/ea2842a158fbf3838d6c08ccceee4833 +0 -0
- data/test/{dummy/tmp/cache/assets/D98/1A0/sprockets%2F21fba9c5cba0584b66f4a9f314abe196 → dummy_rails4/tmp/cache/assets/test/sprockets/fb2e6494356a9cc22aeef079f67690b2} +0 -0
- data/test/functional/a4nt/announcements_controller_test.rb +1 -1
- data/test/test_helper.rb +14 -3
- metadata +109 -59
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/schema.rb +0 -27
- data/test/dummy/tmp/cache/assets/C74/D00/sprockets%2F35a3e1d53221b566385d55604b1f2f81 +0 -0
- data/test/dummy/tmp/cache/assets/D68/870/sprockets%2F00945d57ebe03c366903bdea3f280fdd +0 -0
- data/test/dummy/tmp/cache/assets/DA4/5F0/sprockets%2Fea2842a158fbf3838d6c08ccceee4833 +0 -0
- data/test/dummy/tmp/cache/assets/DA5/880/sprockets%2F933c4e72c3d556f7f7225ddbde1d1c7e +0 -0
- data/test/dummy/tmp/cache/assets/DAA/E90/sprockets%2Fdc903ff3b8bd770c927bcb4e7bb48387 +0 -0
- data/test/dummy/tmp/cache/assets/E39/E90/sprockets%2Fe9e458ddec5a8f3dcbe083bf77b923ab +0 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: cfdb0127e6b87480f42f5d1a39b3c896a0dac2a4
|
|
4
|
+
data.tar.gz: db36524bc5fe346e833ad37e174947b9bd9206b7
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 0e21b92a1d091cc3721440bdc0a5d04beaa29e47d66a6fc03766b22d25c1b932ada9b5ec2b0be786fee5a29b2c3751ad92ff71136659d54dbe820613c06b3907
|
|
7
|
+
data.tar.gz: 7038eb48796c2e2f6dbfa5e5bd75cadcf286fc25b6127697a6edf988f296b9d467ed4df85b10aa0e1bc1c1f873ea9e16f3c0bcb9bc49a1e1198d0048197e8a20
|
data/MIT-LICENSE
CHANGED
data/README.md
CHANGED
|
@@ -1,19 +1,36 @@
|
|
|
1
1
|
# A4nt
|
|
2
2
|
|
|
3
|
+
[](http://travis-ci.org/ma2gedev/a4nt)
|
|
4
|
+
|
|
3
5
|
## Installation
|
|
4
6
|
|
|
5
7
|
Add this line to your application's Gemfile:
|
|
6
8
|
|
|
7
9
|
gem 'a4nt'
|
|
8
10
|
|
|
11
|
+
For Rails 4
|
|
12
|
+
|
|
13
|
+
gem 'a4nt', '~> 2.0.0'
|
|
14
|
+
|
|
15
|
+
For Rails 3
|
|
16
|
+
|
|
17
|
+
gem 'a4nt', '~> 1.0.0'
|
|
18
|
+
|
|
9
19
|
And then execute:
|
|
10
20
|
|
|
11
21
|
bundle install
|
|
12
|
-
rake a4nt:install:migrations
|
|
13
|
-
rake db:migrate
|
|
22
|
+
bundle exec rake a4nt:install:migrations
|
|
23
|
+
bundle exec rake db:migrate
|
|
14
24
|
|
|
15
25
|
And it needs to be mounted in config/routes.rb file:
|
|
16
26
|
|
|
17
27
|
mount A4nt::Engine, at: '/a4nt'
|
|
18
28
|
# /a4nt is just an example
|
|
19
29
|
|
|
30
|
+
## MEMO: How to develop
|
|
31
|
+
|
|
32
|
+
Edit Rakefile and test/test_helper.rb to change dummy app.
|
|
33
|
+
|
|
34
|
+
bundle exec rake db:migrate
|
|
35
|
+
bundle exec rake test
|
|
36
|
+
|
data/Rakefile
CHANGED
|
@@ -20,7 +20,7 @@ RDoc::Task.new(:rdoc) do |rdoc|
|
|
|
20
20
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
21
21
|
end
|
|
22
22
|
|
|
23
|
-
APP_RAKEFILE = File.expand_path("../test/
|
|
23
|
+
APP_RAKEFILE = File.expand_path("../test/dummy_rails4/Rakefile", __FILE__)
|
|
24
24
|
load 'rails/tasks/engine.rake'
|
|
25
25
|
|
|
26
26
|
|
|
@@ -43,7 +43,7 @@ module A4nt
|
|
|
43
43
|
# POST /announcements
|
|
44
44
|
# POST /announcements.json
|
|
45
45
|
def create
|
|
46
|
-
@announcement = Announcement.new(
|
|
46
|
+
@announcement = Announcement.new(announcement_params)
|
|
47
47
|
|
|
48
48
|
respond_to do |format|
|
|
49
49
|
if @announcement.save
|
|
@@ -62,7 +62,7 @@ module A4nt
|
|
|
62
62
|
@announcement = Announcement.find(params[:id])
|
|
63
63
|
|
|
64
64
|
respond_to do |format|
|
|
65
|
-
if @announcement.update_attributes(
|
|
65
|
+
if @announcement.update_attributes(announcement_params)
|
|
66
66
|
format.html { redirect_to @announcement, notice: 'Announcement was successfully updated.' }
|
|
67
67
|
format.json { head :no_content }
|
|
68
68
|
else
|
|
@@ -83,5 +83,11 @@ module A4nt
|
|
|
83
83
|
format.json { head :no_content }
|
|
84
84
|
end
|
|
85
85
|
end
|
|
86
|
+
|
|
87
|
+
private
|
|
88
|
+
|
|
89
|
+
def announcement_params
|
|
90
|
+
params.require(:announcement).permit(:body, :end_time, :position, :start_time, :title, :target)
|
|
91
|
+
end
|
|
86
92
|
end
|
|
87
93
|
end
|
data/lib/a4nt/version.rb
CHANGED
|
@@ -1,2206 +1 @@
|
|
|
1
1
|
Connecting to database specified by database.yml
|
|
2
|
-
Connecting to database specified by database.yml
|
|
3
|
-
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
|
4
|
-
[1m[35m (2.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
5
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
6
|
-
[1m[35m (1.3ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
|
7
|
-
Connecting to database specified by database.yml
|
|
8
|
-
[1m[36m (1.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
9
|
-
Migrating to CreateA4ntAnnouncements (20130314151144)
|
|
10
|
-
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
|
11
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
12
|
-
[1m[35m (1.0ms)[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, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
13
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130314151144')[0m
|
|
14
|
-
[1m[35m (2.4ms)[0m commit transaction
|
|
15
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
16
|
-
Connecting to database specified by database.yml
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
Started GET "/a4nt/annoucements/" for 127.0.0.1 at 2013-03-15 00:22:40 +0900
|
|
20
|
-
Connecting to database specified by database.yml
|
|
21
|
-
|
|
22
|
-
ActionController::RoutingError (No route matches [GET] "/a4nt/annoucements"):
|
|
23
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
24
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
25
|
-
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
|
26
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
|
27
|
-
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
28
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
|
29
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
30
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
31
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
32
|
-
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
33
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
34
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
|
35
|
-
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
|
36
|
-
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
|
37
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
38
|
-
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
39
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
40
|
-
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
41
|
-
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
42
|
-
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
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 (2.2ms)
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
Started GET "/a4nt/annoucement/" for 127.0.0.1 at 2013-03-15 00:22:43 +0900
|
|
49
|
-
|
|
50
|
-
ActionController::RoutingError (No route matches [GET] "/a4nt/annoucement"):
|
|
51
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
52
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
53
|
-
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
|
54
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
|
55
|
-
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
56
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
|
57
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
58
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
59
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
60
|
-
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
61
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
62
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
|
63
|
-
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
|
64
|
-
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
|
65
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
66
|
-
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
67
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
68
|
-
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
69
|
-
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
70
|
-
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
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 (0.6ms)
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
Started GET "/a4nt/annoucements/index" for 127.0.0.1 at 2013-03-15 00:22:50 +0900
|
|
77
|
-
|
|
78
|
-
ActionController::RoutingError (No route matches [GET] "/a4nt/annoucements/index"):
|
|
79
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
80
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
81
|
-
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
|
82
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
|
83
|
-
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
84
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
|
85
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
86
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
87
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
88
|
-
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
89
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
90
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
|
91
|
-
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
|
92
|
-
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
|
93
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
94
|
-
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
95
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
96
|
-
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
97
|
-
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
98
|
-
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
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 (0.6ms)
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
Started GET "/annoucements" for 127.0.0.1 at 2013-03-15 00:23:40 +0900
|
|
105
|
-
Connecting to database specified by database.yml
|
|
106
|
-
|
|
107
|
-
ActionController::RoutingError (No route matches [GET] "/annoucements"):
|
|
108
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
109
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
110
|
-
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
|
111
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
|
112
|
-
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
113
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
|
114
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
115
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
116
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
117
|
-
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
118
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
119
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
|
120
|
-
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
|
121
|
-
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
|
122
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
123
|
-
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
124
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
125
|
-
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
126
|
-
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
127
|
-
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
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.3ms)
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
Started GET "/announcements" for 127.0.0.1 at 2013-03-15 00:23:47 +0900
|
|
134
|
-
|
|
135
|
-
ActionController::RoutingError (No route matches [GET] "/announcements"):
|
|
136
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
137
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
138
|
-
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
|
139
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
|
140
|
-
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
141
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
|
142
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
143
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
144
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
145
|
-
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
146
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
147
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
|
148
|
-
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
|
149
|
-
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
|
150
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
151
|
-
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
152
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
153
|
-
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
154
|
-
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
155
|
-
/Users/taka/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
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 (0.6ms)
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
Started GET "/a4nt/announcements" for 127.0.0.1 at 2013-03-15 00:23:52 +0900
|
|
162
|
-
Processing by A4nt::AnnouncementsController#index as HTML
|
|
163
|
-
[1m[36mA4nt::Announcement Load (0.1ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" [0m
|
|
164
|
-
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/index.html.erb within layouts/a4nt/application (1.1ms)
|
|
165
|
-
Compiled a4nt/announcements.css (0ms) (pid 46078)
|
|
166
|
-
Compiled a4nt/application.css (9ms) (pid 46078)
|
|
167
|
-
Compiled jquery.js (26ms) (pid 46078)
|
|
168
|
-
Compiled jquery_ujs.js (0ms) (pid 46078)
|
|
169
|
-
Compiled a4nt/announcements.js (0ms) (pid 46078)
|
|
170
|
-
Compiled a4nt/application.js (94ms) (pid 46078)
|
|
171
|
-
Completed 200 OK in 196ms (Views: 153.7ms | ActiveRecord: 2.5ms)
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-15 00:23:52 +0900
|
|
175
|
-
Served asset /a4nt/announcements.css - 200 OK (7ms)
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-15 00:23:52 +0900
|
|
179
|
-
Served asset /a4nt/application.css - 200 OK (14ms)
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-15 00:23:52 +0900
|
|
183
|
-
Served asset /jquery_ujs.js - 200 OK (1ms)
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-15 00:23:52 +0900
|
|
187
|
-
Served asset /a4nt/application.js - 200 OK (5ms)
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-15 00:23:52 +0900
|
|
191
|
-
Served asset /a4nt/announcements.js - 200 OK (2ms)
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-15 00:23:52 +0900
|
|
195
|
-
Served asset /jquery.js - 200 OK (2ms)
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
Started GET "/a4nt/announcements/new" for 127.0.0.1 at 2013-03-15 00:23:56 +0900
|
|
199
|
-
Processing by A4nt::AnnouncementsController#new as HTML
|
|
200
|
-
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/_form.html.erb (28.6ms)
|
|
201
|
-
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/new.html.erb within layouts/a4nt/application (35.0ms)
|
|
202
|
-
Completed 200 OK in 73ms (Views: 62.3ms | ActiveRecord: 0.0ms)
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
Started POST "/a4nt/announcements" for 127.0.0.1 at 2013-03-15 00:24:13 +0900
|
|
206
|
-
Processing by A4nt::AnnouncementsController#create as HTML
|
|
207
|
-
Parameters: {"utf8"=>"✓", "authenticity_token"=>"lfnL+by0CmkFH9FQTszLKkQBmDjorMerRBh9NfBgsm8=", "announcement"=>{"title"=>"title", "body"=>"body", "start_time(1i)"=>"2013", "start_time(2i)"=>"3", "start_time(3i)"=>"14", "start_time(4i)"=>"15", "start_time(5i)"=>"23", "end_time(1i)"=>"2013", "end_time(2i)"=>"4", "end_time(3i)"=>"14", "end_time(4i)"=>"15", "end_time(5i)"=>"23", "position"=>"1"}, "commit"=>"Create Announcement"}
|
|
208
|
-
[1m[35m (0.1ms)[0m begin transaction
|
|
209
|
-
[1m[36mSQL (5.6ms)[0m [1mINSERT INTO "a4nt_announcements" ("body", "created_at", "end_time", "position", "start_time", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "body"], ["created_at", Thu, 14 Mar 2013 15:24:13 UTC +00:00], ["end_time", Sun, 14 Apr 2013 15:23:00 UTC +00:00], ["position", 1], ["start_time", Thu, 14 Mar 2013 15:23:00 UTC +00:00], ["title", "title"], ["updated_at", Thu, 14 Mar 2013 15:24:13 UTC +00:00]]
|
|
210
|
-
[1m[35m (1.1ms)[0m commit transaction
|
|
211
|
-
Redirected to http://localhost:3000/a4nt/announcements/1
|
|
212
|
-
Completed 302 Found in 12ms (ActiveRecord: 6.7ms)
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
Started GET "/a4nt/announcements/1" for 127.0.0.1 at 2013-03-15 00:24:13 +0900
|
|
216
|
-
Processing by A4nt::AnnouncementsController#show as HTML
|
|
217
|
-
Parameters: {"id"=>"1"}
|
|
218
|
-
[1m[36mA4nt::Announcement Load (0.2ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
219
|
-
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/show.html.erb within layouts/a4nt/application (1.5ms)
|
|
220
|
-
Completed 200 OK in 7ms (Views: 5.1ms | ActiveRecord: 0.2ms)
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
Started GET "/a4nt/announcements" for 127.0.0.1 at 2013-03-15 00:24:15 +0900
|
|
224
|
-
Processing by A4nt::AnnouncementsController#index as HTML
|
|
225
|
-
[1m[35mA4nt::Announcement Load (0.2ms)[0m SELECT "a4nt_announcements".* FROM "a4nt_announcements"
|
|
226
|
-
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/index.html.erb within layouts/a4nt/application (1.3ms)
|
|
227
|
-
Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms)
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
Started GET "/a4nt" for 127.0.0.1 at 2013-03-15 01:01:32 +0900
|
|
231
|
-
Connecting to database specified by database.yml
|
|
232
|
-
Processing by A4nt::AnnouncementsController#index as HTML
|
|
233
|
-
[1m[36mA4nt::Announcement Load (0.2ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" [0m
|
|
234
|
-
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/index.html.erb within layouts/a4nt/application (5.1ms)
|
|
235
|
-
Completed 200 OK in 81ms (Views: 40.8ms | ActiveRecord: 1.9ms)
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-15 01:01:33 +0900
|
|
239
|
-
Served asset /jquery.js - 304 Not Modified (2ms)
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-15 01:01:33 +0900
|
|
243
|
-
Served asset /a4nt/announcements.css - 304 Not Modified (3ms)
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-15 01:01:33 +0900
|
|
247
|
-
Served asset /a4nt/application.js - 304 Not Modified (6ms)
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-15 01:01:33 +0900
|
|
251
|
-
Served asset /a4nt/application.css - 304 Not Modified (3ms)
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-15 01:01:33 +0900
|
|
255
|
-
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-15 01:01:33 +0900
|
|
259
|
-
Served asset /a4nt/announcements.js - 304 Not Modified (2ms)
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
Started GET "/a4nt/announcements/new" for 127.0.0.1 at 2013-03-15 01:01:38 +0900
|
|
263
|
-
Processing by A4nt::AnnouncementsController#new as HTML
|
|
264
|
-
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/_form.html.erb (14.6ms)
|
|
265
|
-
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/new.html.erb within layouts/a4nt/application (22.1ms)
|
|
266
|
-
Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.0ms)
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-15 01:01:38 +0900
|
|
270
|
-
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-15 01:01:38 +0900
|
|
274
|
-
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-15 01:01:38 +0900
|
|
278
|
-
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-15 01:01:38 +0900
|
|
282
|
-
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-15 01:01:38 +0900
|
|
286
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-15 01:01:38 +0900
|
|
290
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
Started POST "/a4nt/announcements" for 127.0.0.1 at 2013-03-15 01:01:52 +0900
|
|
294
|
-
Processing by A4nt::AnnouncementsController#create as HTML
|
|
295
|
-
Parameters: {"utf8"=>"✓", "authenticity_token"=>"lfnL+by0CmkFH9FQTszLKkQBmDjorMerRBh9NfBgsm8=", "announcement"=>{"title"=>"test", "body"=>"test", "start_time(1i)"=>"2013", "start_time(2i)"=>"2", "start_time(3i)"=>"14", "start_time(4i)"=>"16", "start_time(5i)"=>"01", "end_time(1i)"=>"2013", "end_time(2i)"=>"3", "end_time(3i)"=>"13", "end_time(4i)"=>"16", "end_time(5i)"=>"01", "position"=>"1"}, "commit"=>"Create Announcement"}
|
|
296
|
-
[1m[35m (0.1ms)[0m begin transaction
|
|
297
|
-
[1m[36mSQL (7.1ms)[0m [1mINSERT INTO "a4nt_announcements" ("body", "created_at", "end_time", "position", "start_time", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["body", "test"], ["created_at", Thu, 14 Mar 2013 16:01:52 UTC +00:00], ["end_time", Wed, 13 Mar 2013 16:01:00 UTC +00:00], ["position", 1], ["start_time", Thu, 14 Feb 2013 16:01:00 UTC +00:00], ["title", "test"], ["updated_at", Thu, 14 Mar 2013 16:01:52 UTC +00:00]]
|
|
298
|
-
[1m[35m (0.8ms)[0m commit transaction
|
|
299
|
-
Redirected to http://localhost:3000/a4nt/announcements/2
|
|
300
|
-
Completed 302 Found in 36ms (ActiveRecord: 8.0ms)
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
Started GET "/a4nt/announcements/2" for 127.0.0.1 at 2013-03-15 01:01:52 +0900
|
|
304
|
-
Processing by A4nt::AnnouncementsController#show as HTML
|
|
305
|
-
Parameters: {"id"=>"2"}
|
|
306
|
-
[1m[36mA4nt::Announcement Load (0.2ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1[0m [["id", "2"]]
|
|
307
|
-
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/show.html.erb within layouts/a4nt/application (1.4ms)
|
|
308
|
-
Completed 200 OK in 7ms (Views: 4.9ms | ActiveRecord: 0.2ms)
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-15 01:01:52 +0900
|
|
312
|
-
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-15 01:01:52 +0900
|
|
316
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-15 01:01:52 +0900
|
|
320
|
-
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-15 01:01:52 +0900
|
|
324
|
-
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-15 01:01:52 +0900
|
|
328
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-15 01:01:52 +0900
|
|
332
|
-
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
Started GET "/a4nt/announcements" for 127.0.0.1 at 2013-03-15 01:01:55 +0900
|
|
336
|
-
Processing by A4nt::AnnouncementsController#index as HTML
|
|
337
|
-
[1m[35mA4nt::Announcement Load (0.2ms)[0m SELECT "a4nt_announcements".* FROM "a4nt_announcements"
|
|
338
|
-
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/index.html.erb within layouts/a4nt/application (2.6ms)
|
|
339
|
-
Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.2ms)
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-15 01:01:55 +0900
|
|
343
|
-
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-15 01:01:55 +0900
|
|
347
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-15 01:01:55 +0900
|
|
351
|
-
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-15 01:01:55 +0900
|
|
355
|
-
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-15 01:01:55 +0900
|
|
359
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-15 01:01:55 +0900
|
|
363
|
-
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
Started GET "/a4nt/announcements/new" for 127.0.0.1 at 2013-03-15 01:01:56 +0900
|
|
367
|
-
Processing by A4nt::AnnouncementsController#new as HTML
|
|
368
|
-
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/_form.html.erb (9.8ms)
|
|
369
|
-
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/new.html.erb within layouts/a4nt/application (10.7ms)
|
|
370
|
-
Completed 200 OK in 14ms (Views: 14.2ms | ActiveRecord: 0.0ms)
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-15 01:01:56 +0900
|
|
374
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-15 01:01:56 +0900
|
|
378
|
-
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-15 01:01:56 +0900
|
|
382
|
-
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-15 01:01:56 +0900
|
|
386
|
-
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-15 01:01:56 +0900
|
|
390
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-15 01:01:56 +0900
|
|
394
|
-
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
Started POST "/a4nt/announcements" for 127.0.0.1 at 2013-03-15 01:02:10 +0900
|
|
398
|
-
Processing by A4nt::AnnouncementsController#create as HTML
|
|
399
|
-
Parameters: {"utf8"=>"✓", "authenticity_token"=>"lfnL+by0CmkFH9FQTszLKkQBmDjorMerRBh9NfBgsm8=", "announcement"=>{"title"=>"test3", "body"=>"test3", "start_time(1i)"=>"2013", "start_time(2i)"=>"3", "start_time(3i)"=>"14", "start_time(4i)"=>"16", "start_time(5i)"=>"01", "end_time(1i)"=>"2013", "end_time(2i)"=>"6", "end_time(3i)"=>"14", "end_time(4i)"=>"16", "end_time(5i)"=>"01", "position"=>"3"}, "commit"=>"Create Announcement"}
|
|
400
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
401
|
-
[1m[35mSQL (0.5ms)[0m INSERT INTO "a4nt_announcements" ("body", "created_at", "end_time", "position", "start_time", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "test3"], ["created_at", Thu, 14 Mar 2013 16:02:10 UTC +00:00], ["end_time", Fri, 14 Jun 2013 16:01:00 UTC +00:00], ["position", 3], ["start_time", Thu, 14 Mar 2013 16:01:00 UTC +00:00], ["title", "test3"], ["updated_at", Thu, 14 Mar 2013 16:02:10 UTC +00:00]]
|
|
402
|
-
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
|
403
|
-
Redirected to http://localhost:3000/a4nt/announcements/3
|
|
404
|
-
Completed 302 Found in 4ms (ActiveRecord: 1.3ms)
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
Started GET "/a4nt/announcements/3" for 127.0.0.1 at 2013-03-15 01:02:10 +0900
|
|
408
|
-
Processing by A4nt::AnnouncementsController#show as HTML
|
|
409
|
-
Parameters: {"id"=>"3"}
|
|
410
|
-
[1m[35mA4nt::Announcement Load (0.1ms)[0m SELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1 [["id", "3"]]
|
|
411
|
-
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/show.html.erb within layouts/a4nt/application (0.6ms)
|
|
412
|
-
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-15 01:02:10 +0900
|
|
416
|
-
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-15 01:02:10 +0900
|
|
420
|
-
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-15 01:02:10 +0900
|
|
424
|
-
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-15 01:02:10 +0900
|
|
428
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-15 01:02:10 +0900
|
|
432
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-15 01:02:10 +0900
|
|
436
|
-
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
Started GET "/a4nt/announcements" for 127.0.0.1 at 2013-03-15 01:02:13 +0900
|
|
440
|
-
Processing by A4nt::AnnouncementsController#index as HTML
|
|
441
|
-
[1m[36mA4nt::Announcement Load (0.2ms)[0m [1mSELECT "a4nt_announcements".* FROM "a4nt_announcements" [0m
|
|
442
|
-
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/index.html.erb within layouts/a4nt/application (2.9ms)
|
|
443
|
-
Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.2ms)
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-15 01:02:13 +0900
|
|
447
|
-
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-15 01:02:13 +0900
|
|
451
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-15 01:02:13 +0900
|
|
455
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-15 01:02:13 +0900
|
|
459
|
-
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-15 01:02:13 +0900
|
|
463
|
-
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-15 01:02:13 +0900
|
|
467
|
-
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
|
468
|
-
Connecting to database specified by database.yml
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
Started GET "/a4nt/announcements/new" for 127.0.0.1 at 2013-03-15 01:03:20 +0900
|
|
472
|
-
Connecting to database specified by database.yml
|
|
473
|
-
Processing by A4nt::AnnouncementsController#new as HTML
|
|
474
|
-
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/_form.html.erb (29.7ms)
|
|
475
|
-
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/new.html.erb within layouts/a4nt/application (34.5ms)
|
|
476
|
-
Completed 200 OK in 95ms (Views: 54.9ms | ActiveRecord: 2.2ms)
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-15 01:03:21 +0900
|
|
480
|
-
Served asset /a4nt/application.css - 304 Not Modified (6ms)
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-15 01:03:21 +0900
|
|
484
|
-
Served asset /a4nt/announcements.css - 304 Not Modified (3ms)
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-15 01:03:21 +0900
|
|
488
|
-
Served asset /jquery.js - 304 Not Modified (2ms)
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-15 01:03:21 +0900
|
|
492
|
-
Served asset /a4nt/application.js - 304 Not Modified (18ms)
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-15 01:03:21 +0900
|
|
496
|
-
Served asset /jquery_ujs.js - 304 Not Modified (4ms)
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-15 01:03:21 +0900
|
|
500
|
-
Served asset /a4nt/announcements.js - 304 Not Modified (2ms)
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
Started POST "/a4nt/announcements" for 127.0.0.1 at 2013-03-15 01:03:37 +0900
|
|
504
|
-
Processing by A4nt::AnnouncementsController#create as HTML
|
|
505
|
-
Parameters: {"utf8"=>"✓", "authenticity_token"=>"lfnL+by0CmkFH9FQTszLKkQBmDjorMerRBh9NfBgsm8=", "announcement"=>{"title"=>"future", "body"=>"future", "start_time(1i)"=>"2013", "start_time(2i)"=>"6", "start_time(3i)"=>"14", "start_time(4i)"=>"16", "start_time(5i)"=>"03", "end_time(1i)"=>"2013", "end_time(2i)"=>"9", "end_time(3i)"=>"14", "end_time(4i)"=>"16", "end_time(5i)"=>"03", "position"=>"5"}, "commit"=>"Create Announcement"}
|
|
506
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
507
|
-
[1m[35mSQL (4.4ms)[0m INSERT INTO "a4nt_announcements" ("body", "created_at", "end_time", "position", "start_time", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "future"], ["created_at", Thu, 14 Mar 2013 16:03:37 UTC +00:00], ["end_time", Sat, 14 Sep 2013 16:03:00 UTC +00:00], ["position", 5], ["start_time", Fri, 14 Jun 2013 16:03:00 UTC +00:00], ["title", "future"], ["updated_at", Thu, 14 Mar 2013 16:03:37 UTC +00:00]]
|
|
508
|
-
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
|
509
|
-
Redirected to http://localhost:3000/a4nt/announcements/4
|
|
510
|
-
Completed 302 Found in 9ms (ActiveRecord: 5.2ms)
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
Started GET "/a4nt/announcements/4" for 127.0.0.1 at 2013-03-15 01:03:37 +0900
|
|
514
|
-
Processing by A4nt::AnnouncementsController#show as HTML
|
|
515
|
-
Parameters: {"id"=>"4"}
|
|
516
|
-
[1m[35mA4nt::Announcement Load (0.3ms)[0m SELECT "a4nt_announcements".* FROM "a4nt_announcements" WHERE "a4nt_announcements"."id" = ? LIMIT 1 [["id", "4"]]
|
|
517
|
-
Rendered /Users/taka/work/rails/a4nt/app/views/a4nt/announcements/show.html.erb within layouts/a4nt/application (1.4ms)
|
|
518
|
-
Completed 200 OK in 7ms (Views: 5.0ms | ActiveRecord: 0.3ms)
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
Started GET "/assets/a4nt/application.css?body=1" for 127.0.0.1 at 2013-03-15 01:03:37 +0900
|
|
522
|
-
Served asset /a4nt/application.css - 304 Not Modified (0ms)
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
Started GET "/assets/a4nt/announcements.css?body=1" for 127.0.0.1 at 2013-03-15 01:03:37 +0900
|
|
526
|
-
Served asset /a4nt/announcements.css - 304 Not Modified (0ms)
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
Started GET "/assets/a4nt/application.js?body=1" for 127.0.0.1 at 2013-03-15 01:03:37 +0900
|
|
530
|
-
Served asset /a4nt/application.js - 304 Not Modified (0ms)
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
Started GET "/assets/a4nt/announcements.js?body=1" for 127.0.0.1 at 2013-03-15 01:03:37 +0900
|
|
534
|
-
Served asset /a4nt/announcements.js - 304 Not Modified (0ms)
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-15 01:03:37 +0900
|
|
538
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-15 01:03:37 +0900
|
|
542
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
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
|