nested_form 0.3.0 → 0.3.1
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.
- data/CHANGELOG.rdoc +6 -0
- data/README.md +1 -1
- data/lib/nested_form/builder_mixin.rb +16 -11
- data/spec/dummy/app/models/project.rb +2 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/test.log +177 -1003
- data/spec/dummy/tmp/cache/assets/C99/4D0/sprockets%2F5e30a6b911437f1428dc32c3ae182123 +0 -0
- data/spec/dummy/tmp/cache/assets/C99/7D0/sprockets%2F79513e6956e0ee8624976e041fd5636d +0 -0
- data/spec/dummy/tmp/cache/assets/CAA/C90/sprockets%2F1e6c8ee1258009385ccf5b84015424b3 +0 -0
- data/spec/dummy/tmp/cache/assets/CB2/CB0/sprockets%2F11cc8d161d71a716dd36f16849d90870 +0 -0
- data/spec/dummy/tmp/cache/assets/CB7/7F0/sprockets%2Fac97b043470f6fcc925c352f16956643 +0 -0
- data/spec/dummy/tmp/cache/assets/CDB/8A0/sprockets%2Faed2a2575c376263c26e93b56b57051d +0 -0
- data/spec/dummy/tmp/cache/assets/D1F/A10/sprockets%2F60317e62cb324bfd9987e8da9636fd06 +0 -0
- data/spec/dummy/tmp/cache/assets/D49/870/sprockets%2F90896142645585acc8baf56ad57e3afb +0 -0
- data/spec/dummy/tmp/cache/assets/D62/F00/sprockets%2F6ac03a007f26b1c18ed3d53498ad3eb8 +0 -0
- data/spec/dummy/tmp/cache/assets/D79/BC0/sprockets%2F85a1db977361cc5130fcefb4637ff67e +0 -0
- data/spec/dummy/tmp/cache/assets/D87/1F0/sprockets%2F61c9ceafb877fb740c67416ff6f782a9 +0 -0
- data/spec/dummy/tmp/cache/assets/DAD/4F0/sprockets%2F765acd1bf68dc90f7d3e61da78b1e659 +0 -0
- data/spec/dummy/tmp/cache/assets/E03/3F0/sprockets%2F82b37ae9eccec44c1ef44cfdd07d8534 +0 -0
- data/spec/dummy/tmp/cache/assets/E0A/CA0/sprockets%2F7fe72ac1c0db1a7e8e7f59cf25e8a39e +0 -0
- data/spec/dummy/tmp/cache/assets/E3A/A60/sprockets%2F7c72c96cfc66454caf5fc8ca0fedd4f3 +0 -0
- data/spec/dummy/tmp/cache/assets/E54/400/sprockets%2Fd0cbc16cc37efcf9dc41f242b5dbbf81 +0 -0
- data/spec/dummy/tmp/cache/assets/EB7/AB0/sprockets%2F801d29a5debdbfbfb4eef14d70d9bcdb +0 -0
- data/spec/dummy/tmp/cache/assets/F48/5E0/sprockets%2F26cd6ffcffbebbe2fd6cd1a8f0c2debc +0 -0
- data/spec/nested_form/builder_spec.rb +31 -9
- metadata +14 -16
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/log/development.log +0 -2363
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -24,14 +24,19 @@ require "spec_helper"
|
|
24
24
|
subject.link_to_add(:tasks) { "Add" }.should == '<a href="javascript:void(0)" class="add_nested_fields" data-association="tasks" data-blueprint-id="tasks_fields_blueprint">Add</a>'
|
25
25
|
end
|
26
26
|
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
27
|
+
it 'raises ArgumentError when missing association is provided' do
|
28
|
+
expect {
|
29
|
+
subject.link_to_add('Add', :bugs)
|
30
|
+
}.to raise_error(ArgumentError)
|
31
|
+
end
|
32
|
+
|
33
|
+
it 'raises ArgumentError when accepts_nested_attributes_for is missing' do
|
34
|
+
expect {
|
35
|
+
subject.link_to_add('Add', :not_nested_tasks)
|
36
|
+
}.to raise_error(ArgumentError)
|
32
37
|
end
|
33
38
|
end
|
34
|
-
|
39
|
+
|
35
40
|
describe '#link_to_remove' do
|
36
41
|
it "behaves similar to a Rails link_to" do
|
37
42
|
subject.link_to_remove("Remove").should == '<input id="item__destroy" name="item[_destroy]" type="hidden" value="false" /><a href="javascript:void(0)" class="remove_nested_fields">Remove</a>'
|
@@ -71,9 +76,14 @@ require "spec_helper"
|
|
71
76
|
describe '#fields_for' do
|
72
77
|
it "wraps nested fields each in a div with class" do
|
73
78
|
2.times { project.tasks.build }
|
74
|
-
|
75
|
-
|
76
|
-
|
79
|
+
|
80
|
+
fields = if subject.is_a?(NestedForm::SimpleBuilder)
|
81
|
+
subject.simple_fields_for(:tasks) { "Task" }
|
82
|
+
else
|
83
|
+
subject.fields_for(:tasks) { "Task" }
|
84
|
+
end
|
85
|
+
|
86
|
+
fields.should == '<div class="fields">Task</div><div class="fields">Task</div>'
|
77
87
|
end
|
78
88
|
end
|
79
89
|
|
@@ -116,6 +126,18 @@ require "spec_helper"
|
|
116
126
|
|
117
127
|
output.should match(/div.+data-blueprint="Task"/)
|
118
128
|
end
|
129
|
+
|
130
|
+
it "doesn't render wrapper div when collection is passed" do
|
131
|
+
task = project.tasks.build
|
132
|
+
fields = subject.fields_for(:tasks, project.tasks, :wrapper => false) { 'Task' }
|
133
|
+
|
134
|
+
fields.should eq('Task')
|
135
|
+
|
136
|
+
subject.link_to_add 'Add', :tasks
|
137
|
+
output = template.send(:after_nested_form_callbacks)
|
138
|
+
|
139
|
+
output.should match(/div.+data-blueprint="Task"/)
|
140
|
+
end
|
119
141
|
end
|
120
142
|
|
121
143
|
context "with options" do
|
metadata
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nested_form
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.0
|
5
4
|
prerelease:
|
5
|
+
version: 0.3.1
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Ryan Bates
|
@@ -10,72 +10,72 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2012-
|
13
|
+
date: 2012-11-05 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
|
-
|
16
|
+
prerelease: false
|
17
|
+
type: :development
|
17
18
|
requirement: !ruby/object:Gem::Requirement
|
18
19
|
none: false
|
19
20
|
requirements:
|
20
21
|
- - ! '>='
|
21
22
|
- !ruby/object:Gem::Version
|
22
23
|
version: '0'
|
23
|
-
type: :development
|
24
|
-
prerelease: false
|
25
24
|
version_requirements: !ruby/object:Gem::Requirement
|
26
25
|
none: false
|
27
26
|
requirements:
|
28
27
|
- - ! '>='
|
29
28
|
- !ruby/object:Gem::Version
|
30
29
|
version: '0'
|
30
|
+
name: rake
|
31
31
|
- !ruby/object:Gem::Dependency
|
32
|
-
|
32
|
+
prerelease: false
|
33
|
+
type: :development
|
33
34
|
requirement: !ruby/object:Gem::Requirement
|
34
35
|
none: false
|
35
36
|
requirements:
|
36
37
|
- - ! '>='
|
37
38
|
- !ruby/object:Gem::Version
|
38
39
|
version: '0'
|
39
|
-
type: :development
|
40
|
-
prerelease: false
|
41
40
|
version_requirements: !ruby/object:Gem::Requirement
|
42
41
|
none: false
|
43
42
|
requirements:
|
44
43
|
- - ! '>='
|
45
44
|
- !ruby/object:Gem::Version
|
46
45
|
version: '0'
|
46
|
+
name: bundler
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
|
-
|
48
|
+
prerelease: false
|
49
|
+
type: :development
|
49
50
|
requirement: !ruby/object:Gem::Requirement
|
50
51
|
none: false
|
51
52
|
requirements:
|
52
53
|
- - ~>
|
53
54
|
- !ruby/object:Gem::Version
|
54
55
|
version: '2.6'
|
55
|
-
type: :development
|
56
|
-
prerelease: false
|
57
56
|
version_requirements: !ruby/object:Gem::Requirement
|
58
57
|
none: false
|
59
58
|
requirements:
|
60
59
|
- - ~>
|
61
60
|
- !ruby/object:Gem::Version
|
62
61
|
version: '2.6'
|
62
|
+
name: rspec-rails
|
63
63
|
- !ruby/object:Gem::Dependency
|
64
|
-
|
64
|
+
prerelease: false
|
65
|
+
type: :development
|
65
66
|
requirement: !ruby/object:Gem::Requirement
|
66
67
|
none: false
|
67
68
|
requirements:
|
68
69
|
- - ! '>='
|
69
70
|
- !ruby/object:Gem::Version
|
70
71
|
version: '0'
|
71
|
-
type: :development
|
72
|
-
prerelease: false
|
73
72
|
version_requirements: !ruby/object:Gem::Requirement
|
74
73
|
none: false
|
75
74
|
requirements:
|
76
75
|
- - ! '>='
|
77
76
|
- !ruby/object:Gem::Version
|
78
77
|
version: '0'
|
78
|
+
name: mocha
|
79
79
|
description: Gem to conveniently handle multiple models in a single form with Rails
|
80
80
|
3 and jQuery or Prototype.
|
81
81
|
email: ryan@railscasts.com
|
@@ -126,12 +126,10 @@ files:
|
|
126
126
|
- spec/dummy/config/locales/en.yml
|
127
127
|
- spec/dummy/config/routes.rb
|
128
128
|
- spec/dummy/config.ru
|
129
|
-
- spec/dummy/db/development.sqlite3
|
130
129
|
- spec/dummy/db/migrate/20110710143903_initial_tables.rb
|
131
130
|
- spec/dummy/db/migrate/20120819164528_add_association_with_class_name.rb
|
132
131
|
- spec/dummy/db/schema.rb
|
133
132
|
- spec/dummy/db/test.sqlite3
|
134
|
-
- spec/dummy/log/development.log
|
135
133
|
- spec/dummy/log/test.log
|
136
134
|
- spec/dummy/public/404.html
|
137
135
|
- spec/dummy/public/422.html
|
Binary file
|
@@ -1,2363 +0,0 @@
|
|
1
|
-
Connecting to database specified by database.yml
|
2
|
-
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
3
|
-
[1m[35m (3.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
4
|
-
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
5
|
-
[1m[35m (1.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
6
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
7
|
-
Migrating to InitialTables (20110710143903)
|
8
|
-
[1m[35m (0.0ms)[0m begin transaction
|
9
|
-
[1m[36m (0.5ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) [0m
|
10
|
-
[1m[35m (0.2ms)[0m CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "project_id" integer, "name" varchar(255))
|
11
|
-
[1m[36m (0.2ms)[0m [1mCREATE TABLE "milestones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "name" varchar(255)) [0m
|
12
|
-
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20110710143903')
|
13
|
-
[1m[36m (2.4ms)[0m [1mcommit transaction[0m
|
14
|
-
Migrating to AddAssociationWithClassName (20120819164528)
|
15
|
-
[1m[35m (0.1ms)[0m begin transaction
|
16
|
-
[1m[36m (0.4ms)[0m [1mCREATE TABLE "project_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "project_id" integer, "name" varchar(255)) [0m
|
17
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120819164528')
|
18
|
-
[1m[36m (2.5ms)[0m [1mcommit transaction[0m
|
19
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
20
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
21
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("milestones")
|
22
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("project_tasks")[0m
|
23
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("projects")
|
24
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("tasks")[0m
|
25
|
-
Connecting to database specified by database.yml
|
26
|
-
|
27
|
-
|
28
|
-
Started GET "/" for 127.0.0.1 at 2012-09-16 15:10:48 +0400
|
29
|
-
|
30
|
-
ActionController::RoutingError (No route matches [GET] "/"):
|
31
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
32
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
33
|
-
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
34
|
-
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
35
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
36
|
-
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
37
|
-
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
38
|
-
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
39
|
-
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
40
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
41
|
-
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
42
|
-
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
43
|
-
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
44
|
-
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
45
|
-
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
46
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
47
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
48
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
49
|
-
|
50
|
-
|
51
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.4ms)
|
52
|
-
|
53
|
-
|
54
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:10:55 +0400
|
55
|
-
Processing by ProjectsController#new as HTML
|
56
|
-
Rendered projects/new.html.erb within layouts/application (64.7ms)
|
57
|
-
Completed 200 OK in 72ms (Views: 68.1ms | ActiveRecord: 0.7ms)
|
58
|
-
|
59
|
-
|
60
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-16 15:10:55 +0400
|
61
|
-
Compiled jquery_events_test.js (0ms) (pid 69549)
|
62
|
-
Served asset /jquery_events_test.js - 200 OK (29ms)
|
63
|
-
|
64
|
-
|
65
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-16 15:10:55 +0400
|
66
|
-
Compiled jquery.js (2ms) (pid 69549)
|
67
|
-
Served asset /jquery.js - 200 OK (159ms)
|
68
|
-
|
69
|
-
|
70
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:10:55 +0400
|
71
|
-
Compiled jquery_nested_form.js (0ms) (pid 69549)
|
72
|
-
Served asset /jquery_nested_form.js - 200 OK (52ms)
|
73
|
-
|
74
|
-
|
75
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:11:57 +0400
|
76
|
-
Processing by ProjectsController#new as HTML
|
77
|
-
Rendered projects/new.html.erb within layouts/application (2.7ms)
|
78
|
-
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
79
|
-
|
80
|
-
|
81
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-16 15:11:57 +0400
|
82
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
83
|
-
|
84
|
-
|
85
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-16 15:11:57 +0400
|
86
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
87
|
-
|
88
|
-
|
89
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:11:57 +0400
|
90
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
91
|
-
|
92
|
-
|
93
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-16 15:12:10 +0400
|
94
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
95
|
-
|
96
|
-
|
97
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:12:10 +0400
|
98
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
99
|
-
|
100
|
-
|
101
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-16 15:12:10 +0400
|
102
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
103
|
-
|
104
|
-
|
105
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:13:03 +0400
|
106
|
-
Processing by ProjectsController#new as HTML
|
107
|
-
Rendered projects/new.html.erb within layouts/application (2.4ms)
|
108
|
-
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
|
109
|
-
|
110
|
-
|
111
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-16 15:13:03 +0400
|
112
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
113
|
-
|
114
|
-
|
115
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-16 15:13:03 +0400
|
116
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
117
|
-
|
118
|
-
|
119
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:13:03 +0400
|
120
|
-
Compiled jquery_nested_form.js (0ms) (pid 69549)
|
121
|
-
Served asset /jquery_nested_form.js - 200 OK (147ms)
|
122
|
-
|
123
|
-
|
124
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:13:09 +0400
|
125
|
-
Processing by ProjectsController#new as HTML
|
126
|
-
Rendered projects/new.html.erb within layouts/application (2.4ms)
|
127
|
-
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
128
|
-
|
129
|
-
|
130
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:13:09 +0400
|
131
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
132
|
-
|
133
|
-
|
134
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-16 15:13:09 +0400
|
135
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
136
|
-
|
137
|
-
|
138
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-16 15:13:09 +0400
|
139
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
140
|
-
|
141
|
-
|
142
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:13:33 +0400
|
143
|
-
Processing by ProjectsController#new as HTML
|
144
|
-
Rendered projects/new.html.erb within layouts/application (2.9ms)
|
145
|
-
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
146
|
-
|
147
|
-
|
148
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-16 15:13:33 +0400
|
149
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
150
|
-
|
151
|
-
|
152
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:13:33 +0400
|
153
|
-
Compiled jquery_nested_form.js (0ms) (pid 69549)
|
154
|
-
Served asset /jquery_nested_form.js - 200 OK (24ms)
|
155
|
-
|
156
|
-
|
157
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-16 15:13:33 +0400
|
158
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
159
|
-
Connecting to database specified by database.yml
|
160
|
-
|
161
|
-
|
162
|
-
Started GET "/" for 127.0.0.1 at 2012-09-17 21:26:04 +0300
|
163
|
-
|
164
|
-
ActionController::RoutingError (No route matches [GET] "/"):
|
165
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
166
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
167
|
-
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
168
|
-
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
169
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
170
|
-
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
171
|
-
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
172
|
-
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
173
|
-
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
174
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
175
|
-
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
176
|
-
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
177
|
-
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
178
|
-
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
179
|
-
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
180
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
181
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
182
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
183
|
-
|
184
|
-
|
185
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.7ms)
|
186
|
-
|
187
|
-
|
188
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-17 21:26:10 +0300
|
189
|
-
Processing by ProjectsController#new as HTML
|
190
|
-
Rendered projects/new.html.erb within layouts/application (31.8ms)
|
191
|
-
Completed 500 Internal Server Error in 49ms
|
192
|
-
|
193
|
-
ActionView::Template::Error (can't dup NilClass):
|
194
|
-
1: <%= nested_form_for @project do |f| -%>
|
195
|
-
2: <%= render partial: f %>
|
196
|
-
3: <%= f.text_field :name %>
|
197
|
-
4: <%= f.fields_for :tasks do |tf| -%>
|
198
|
-
app/views/projects/new.html.erb:1:in `block in _app_views_projects_new_html_erb___2641250149401427666_2171759060'
|
199
|
-
app/views/projects/new.html.erb:1:in `_app_views_projects_new_html_erb___2641250149401427666_2171759060'
|
200
|
-
|
201
|
-
|
202
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
|
203
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
204
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.0ms)
|
205
|
-
|
206
|
-
|
207
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-17 21:26:40 +0300
|
208
|
-
Processing by ProjectsController#new as HTML
|
209
|
-
Rendered projects/new.html.erb within layouts/application (10.1ms)
|
210
|
-
Completed 500 Internal Server Error in 30ms
|
211
|
-
|
212
|
-
ActionView::Template::Error (can't dup NilClass):
|
213
|
-
1: <%= nested_form_for @project do |f| -%>
|
214
|
-
2: <%= render f %>
|
215
|
-
3: <%= f.text_field :name %>
|
216
|
-
4: <%= f.fields_for :tasks do |tf| -%>
|
217
|
-
app/views/projects/new.html.erb:1:in `block in _app_views_projects_new_html_erb___2641250149401427666_2170823360'
|
218
|
-
app/views/projects/new.html.erb:1:in `_app_views_projects_new_html_erb___2641250149401427666_2170823360'
|
219
|
-
|
220
|
-
|
221
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
|
222
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
223
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.8ms)
|
224
|
-
|
225
|
-
|
226
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-17 21:26:40 +0300
|
227
|
-
Processing by ProjectsController#new as HTML
|
228
|
-
Rendered projects/new.html.erb within layouts/application (1.3ms)
|
229
|
-
Completed 500 Internal Server Error in 3ms
|
230
|
-
|
231
|
-
ActionView::Template::Error (can't dup NilClass):
|
232
|
-
1: <%= nested_form_for @project do |f| -%>
|
233
|
-
2: <%= render f %>
|
234
|
-
3: <%= f.text_field :name %>
|
235
|
-
4: <%= f.fields_for :tasks do |tf| -%>
|
236
|
-
app/views/projects/new.html.erb:1:in `block in _app_views_projects_new_html_erb___2641250149401427666_2170823360'
|
237
|
-
app/views/projects/new.html.erb:1:in `_app_views_projects_new_html_erb___2641250149401427666_2170823360'
|
238
|
-
|
239
|
-
|
240
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
241
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
242
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.4ms)
|
243
|
-
|
244
|
-
|
245
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-17 21:27:13 +0300
|
246
|
-
Processing by ProjectsController#new as HTML
|
247
|
-
Rendered projects/new.html.erb within layouts/application (2.9ms)
|
248
|
-
Completed 500 Internal Server Error in 5ms
|
249
|
-
|
250
|
-
ActionView::Template::Error (Missing partial projects/form, application/form with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
|
251
|
-
* "/Users/lest/code/nested_form/spec/dummy/app/views"
|
252
|
-
):
|
253
|
-
1: <%= form_for @project do |f| %>
|
254
|
-
2: <%= render partial: f %>
|
255
|
-
3: <% end %>
|
256
|
-
4: <%= nested_form_for @project do |f| -%>
|
257
|
-
5: <%= f.text_field :name %>
|
258
|
-
app/views/projects/new.html.erb:2:in `block in _app_views_projects_new_html_erb___2641250149401427666_2172320740'
|
259
|
-
app/views/projects/new.html.erb:1:in `_app_views_projects_new_html_erb___2641250149401427666_2172320740'
|
260
|
-
|
261
|
-
|
262
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
|
263
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
|
264
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.1ms)
|
265
|
-
Connecting to database specified by database.yml
|
266
|
-
|
267
|
-
|
268
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 22:24:22 +0300
|
269
|
-
Processing by ProjectsController#new as HTML
|
270
|
-
Rendered projects/new.html.erb within layouts/application (80.6ms)
|
271
|
-
Completed 200 OK in 169ms (Views: 163.8ms | ActiveRecord: 0.7ms)
|
272
|
-
|
273
|
-
|
274
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 22:24:23 +0300
|
275
|
-
Compiled jquery_events_test.js (0ms) (pid 30965)
|
276
|
-
Served asset /jquery_events_test.js - 200 OK (92ms)
|
277
|
-
|
278
|
-
|
279
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 22:24:23 +0300
|
280
|
-
Compiled jquery_nested_form.js (0ms) (pid 30965)
|
281
|
-
Served asset /jquery_nested_form.js - 200 OK (44ms)
|
282
|
-
|
283
|
-
|
284
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 22:24:23 +0300
|
285
|
-
Compiled jquery.js (2ms) (pid 30965)
|
286
|
-
Served asset /jquery.js - 200 OK (133ms)
|
287
|
-
Connecting to database specified by database.yml
|
288
|
-
|
289
|
-
|
290
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 22:25:48 +0300
|
291
|
-
Processing by ProjectsController#new as HTML
|
292
|
-
Rendered projects/new.html.erb within layouts/application (42.2ms)
|
293
|
-
Completed 200 OK in 82ms (Views: 78.7ms | ActiveRecord: 0.6ms)
|
294
|
-
|
295
|
-
|
296
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 22:25:48 +0300
|
297
|
-
Served asset /jquery_events_test.js - 304 Not Modified (3ms)
|
298
|
-
|
299
|
-
|
300
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 22:25:49 +0300
|
301
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (2ms)
|
302
|
-
|
303
|
-
|
304
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 22:25:49 +0300
|
305
|
-
Served asset /jquery.js - 304 Not Modified (3ms)
|
306
|
-
|
307
|
-
|
308
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 22:26:06 +0300
|
309
|
-
Processing by ProjectsController#new as HTML
|
310
|
-
Rendered projects/new.html.erb within layouts/application (4.7ms)
|
311
|
-
Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
|
312
|
-
|
313
|
-
|
314
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 22:26:06 +0300
|
315
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
316
|
-
|
317
|
-
|
318
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 22:26:06 +0300
|
319
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
320
|
-
|
321
|
-
|
322
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 22:26:06 +0300
|
323
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
324
|
-
Connecting to database specified by database.yml
|
325
|
-
|
326
|
-
|
327
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 22:26:13 +0300
|
328
|
-
Processing by ProjectsController#new as HTML
|
329
|
-
Rendered projects/new.html.erb within layouts/application (41.6ms)
|
330
|
-
Completed 200 OK in 82ms (Views: 78.5ms | ActiveRecord: 0.6ms)
|
331
|
-
|
332
|
-
|
333
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 22:26:13 +0300
|
334
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (3ms)
|
335
|
-
|
336
|
-
|
337
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 22:26:13 +0300
|
338
|
-
Served asset /jquery_events_test.js - 304 Not Modified (2ms)
|
339
|
-
|
340
|
-
|
341
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 22:26:13 +0300
|
342
|
-
Served asset /jquery.js - 304 Not Modified (4ms)
|
343
|
-
Connecting to database specified by database.yml
|
344
|
-
|
345
|
-
|
346
|
-
Started GET "/" for 127.0.0.1 at 2012-09-26 22:56:18 +0300
|
347
|
-
|
348
|
-
ActionController::RoutingError (No route matches [GET] "/"):
|
349
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
350
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
351
|
-
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
352
|
-
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
353
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
354
|
-
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
355
|
-
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
356
|
-
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
357
|
-
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
358
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
359
|
-
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
360
|
-
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
361
|
-
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
362
|
-
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
363
|
-
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
364
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
365
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
366
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
367
|
-
|
368
|
-
|
369
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (4.4ms)
|
370
|
-
|
371
|
-
|
372
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 22:56:21 +0300
|
373
|
-
Processing by ProjectsController#new as HTML
|
374
|
-
Rendered projects/new.html.erb within layouts/application (36.8ms)
|
375
|
-
Completed 200 OK in 70ms (Views: 66.5ms | ActiveRecord: 0.6ms)
|
376
|
-
|
377
|
-
|
378
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 22:56:21 +0300
|
379
|
-
Served asset /jquery.js - 304 Not Modified (9ms)
|
380
|
-
|
381
|
-
|
382
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 22:56:21 +0300
|
383
|
-
Served asset /jquery_events_test.js - 304 Not Modified (2ms)
|
384
|
-
|
385
|
-
|
386
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 22:56:21 +0300
|
387
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (2ms)
|
388
|
-
|
389
|
-
|
390
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 22:56:55 +0300
|
391
|
-
Processing by ProjectsController#new as HTML
|
392
|
-
Rendered projects/new.html.erb within layouts/application (2.5ms)
|
393
|
-
Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
|
394
|
-
|
395
|
-
|
396
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 22:56:55 +0300
|
397
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
398
|
-
|
399
|
-
|
400
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 22:56:55 +0300
|
401
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
402
|
-
|
403
|
-
|
404
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 22:56:55 +0300
|
405
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
406
|
-
|
407
|
-
|
408
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 22:58:31 +0300
|
409
|
-
Processing by ProjectsController#new as HTML
|
410
|
-
Rendered projects/new.html.erb within layouts/application (4.2ms)
|
411
|
-
Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
|
412
|
-
|
413
|
-
|
414
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 22:58:31 +0300
|
415
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
416
|
-
|
417
|
-
|
418
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 22:58:31 +0300
|
419
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
420
|
-
|
421
|
-
|
422
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 22:58:31 +0300
|
423
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
424
|
-
|
425
|
-
|
426
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 22:58:59 +0300
|
427
|
-
Processing by ProjectsController#new as HTML
|
428
|
-
Rendered projects/new.html.erb within layouts/application (2.5ms)
|
429
|
-
Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
|
430
|
-
|
431
|
-
|
432
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 22:58:59 +0300
|
433
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
434
|
-
|
435
|
-
|
436
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 22:58:59 +0300
|
437
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
438
|
-
|
439
|
-
|
440
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 22:58:59 +0300
|
441
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
442
|
-
Connecting to database specified by database.yml
|
443
|
-
|
444
|
-
|
445
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 22:59:16 +0300
|
446
|
-
Processing by ProjectsController#new as HTML
|
447
|
-
Rendered projects/new.html.erb within layouts/application (29.6ms)
|
448
|
-
Completed 200 OK in 70ms (Views: 66.4ms | ActiveRecord: 0.3ms)
|
449
|
-
|
450
|
-
|
451
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 22:59:17 +0300
|
452
|
-
Served asset /jquery.js - 304 Not Modified (49ms)
|
453
|
-
|
454
|
-
|
455
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 22:59:17 +0300
|
456
|
-
Served asset /jquery_events_test.js - 304 Not Modified (2ms)
|
457
|
-
|
458
|
-
|
459
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 22:59:17 +0300
|
460
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (2ms)
|
461
|
-
Connecting to database specified by database.yml
|
462
|
-
|
463
|
-
|
464
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 22:59:49 +0300
|
465
|
-
Processing by ProjectsController#new as HTML
|
466
|
-
Rendered projects/new.html.erb within layouts/application (29.4ms)
|
467
|
-
Completed 200 OK in 69ms (Views: 65.9ms | ActiveRecord: 0.3ms)
|
468
|
-
|
469
|
-
|
470
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 22:59:49 +0300
|
471
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (4ms)
|
472
|
-
|
473
|
-
|
474
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 22:59:50 +0300
|
475
|
-
Served asset /jquery.js - 304 Not Modified (6ms)
|
476
|
-
|
477
|
-
|
478
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 22:59:50 +0300
|
479
|
-
Served asset /jquery_events_test.js - 304 Not Modified (2ms)
|
480
|
-
|
481
|
-
|
482
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 22:59:50 +0300
|
483
|
-
Processing by ProjectsController#new as HTML
|
484
|
-
Rendered projects/new.html.erb within layouts/application (2.0ms)
|
485
|
-
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
486
|
-
|
487
|
-
|
488
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 22:59:51 +0300
|
489
|
-
Served asset /jquery_nested_form.js - 200 OK (0ms)
|
490
|
-
|
491
|
-
|
492
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 22:59:51 +0300
|
493
|
-
Served asset /jquery.js - 200 OK (0ms)
|
494
|
-
|
495
|
-
|
496
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 22:59:51 +0300
|
497
|
-
Served asset /jquery_events_test.js - 200 OK (0ms)
|
498
|
-
|
499
|
-
|
500
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 23:00:30 +0300
|
501
|
-
Processing by ProjectsController#new as HTML
|
502
|
-
Rendered projects/new.html.erb within layouts/application (4.1ms)
|
503
|
-
Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.0ms)
|
504
|
-
|
505
|
-
|
506
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 23:00:30 +0300
|
507
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
508
|
-
|
509
|
-
|
510
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 23:00:30 +0300
|
511
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
512
|
-
|
513
|
-
|
514
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 23:00:30 +0300
|
515
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
516
|
-
|
517
|
-
|
518
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 23:00:57 +0300
|
519
|
-
Processing by ProjectsController#new as HTML
|
520
|
-
Rendered projects/new.html.erb within layouts/application (3.1ms)
|
521
|
-
Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
|
522
|
-
|
523
|
-
|
524
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 23:00:57 +0300
|
525
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
526
|
-
|
527
|
-
|
528
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 23:00:57 +0300
|
529
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
530
|
-
|
531
|
-
|
532
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 23:00:57 +0300
|
533
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
534
|
-
Connecting to database specified by database.yml
|
535
|
-
Connecting to database specified by database.yml
|
536
|
-
|
537
|
-
|
538
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 23:01:45 +0300
|
539
|
-
Processing by ProjectsController#new as HTML
|
540
|
-
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" ORDER BY "projects"."id" DESC LIMIT 1[0m
|
541
|
-
Rendered projects/new.html.erb within layouts/application (35.8ms)
|
542
|
-
Completed 500 Internal Server Error in 74ms
|
543
|
-
|
544
|
-
ActionView::Template::Error (undefined method `project_path' for #<#<Class:0x00000100a45d70>:0x00000100b4e7d0>):
|
545
|
-
1: <%= nested_form_for Project.last do |f| -%>
|
546
|
-
2: <table>
|
547
|
-
3: <%= f.fields_for :tasks, wrapper: false do |tf| -%>
|
548
|
-
4: <tr class="fields">
|
549
|
-
app/views/projects/new.html.erb:1:in `_app_views_projects_new_html_erb__4484368745097314982_2156635800'
|
550
|
-
|
551
|
-
|
552
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
553
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
554
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.1ms)
|
555
|
-
|
556
|
-
|
557
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 23:01:56 +0300
|
558
|
-
Processing by ProjectsController#new as HTML
|
559
|
-
[1m[35mProject Load (0.2ms)[0m SELECT "projects".* FROM "projects" ORDER BY "projects"."id" DESC LIMIT 1
|
560
|
-
Rendered projects/new.html.erb within layouts/application (2.4ms)
|
561
|
-
Completed 500 Internal Server Error in 4ms
|
562
|
-
|
563
|
-
ActionView::Template::Error (wrong number of arguments (3 for 2)):
|
564
|
-
1: <%= nested_form_for :project, Project.last do |f| -%>
|
565
|
-
2: <table>
|
566
|
-
3: <%= f.fields_for :tasks, wrapper: false do |tf| -%>
|
567
|
-
4: <tr class="fields">
|
568
|
-
app/views/projects/new.html.erb:1:in `_app_views_projects_new_html_erb__4484368745097314982_2160042100'
|
569
|
-
|
570
|
-
|
571
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
|
572
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
573
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.9ms)
|
574
|
-
|
575
|
-
|
576
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 23:02:01 +0300
|
577
|
-
Processing by ProjectsController#new as HTML
|
578
|
-
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" ORDER BY "projects"."id" DESC LIMIT 1[0m
|
579
|
-
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 1
|
580
|
-
Rendered projects/new.html.erb within layouts/application (63.0ms)
|
581
|
-
Completed 200 OK in 67ms (Views: 66.0ms | ActiveRecord: 0.6ms)
|
582
|
-
|
583
|
-
|
584
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 23:02:01 +0300
|
585
|
-
Served asset /jquery.js - 304 Not Modified (7ms)
|
586
|
-
|
587
|
-
|
588
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 23:02:01 +0300
|
589
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (2ms)
|
590
|
-
|
591
|
-
|
592
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 23:02:01 +0300
|
593
|
-
Served asset /jquery_events_test.js - 304 Not Modified (2ms)
|
594
|
-
|
595
|
-
|
596
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 23:02:13 +0300
|
597
|
-
Processing by ProjectsController#new as HTML
|
598
|
-
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" ORDER BY "projects"."id" DESC LIMIT 1[0m
|
599
|
-
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 1
|
600
|
-
Rendered projects/new.html.erb within layouts/application (3.5ms)
|
601
|
-
Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.3ms)
|
602
|
-
|
603
|
-
|
604
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 23:02:14 +0300
|
605
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
606
|
-
|
607
|
-
|
608
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 23:02:14 +0300
|
609
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
610
|
-
|
611
|
-
|
612
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 23:02:14 +0300
|
613
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
614
|
-
|
615
|
-
|
616
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 23:02:45 +0300
|
617
|
-
Processing by ProjectsController#new as HTML
|
618
|
-
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" ORDER BY "projects"."id" DESC LIMIT 1[0m
|
619
|
-
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 1
|
620
|
-
Rendered projects/new.html.erb within layouts/application (4.6ms)
|
621
|
-
Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.3ms)
|
622
|
-
|
623
|
-
|
624
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 23:02:45 +0300
|
625
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
626
|
-
|
627
|
-
|
628
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 23:02:45 +0300
|
629
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
630
|
-
|
631
|
-
|
632
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 23:02:45 +0300
|
633
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
634
|
-
|
635
|
-
|
636
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 23:02:52 +0300
|
637
|
-
Processing by ProjectsController#new as HTML
|
638
|
-
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" ORDER BY "projects"."id" DESC LIMIT 1[0m
|
639
|
-
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 1
|
640
|
-
Rendered projects/new.html.erb within layouts/application (4.6ms)
|
641
|
-
Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.3ms)
|
642
|
-
|
643
|
-
|
644
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 23:02:52 +0300
|
645
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
646
|
-
|
647
|
-
|
648
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 23:02:52 +0300
|
649
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
650
|
-
|
651
|
-
|
652
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 23:02:52 +0300
|
653
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
654
|
-
Connecting to database specified by database.yml
|
655
|
-
|
656
|
-
|
657
|
-
Started GET "/" for 127.0.0.1 at 2012-10-17 22:09:31 +0300
|
658
|
-
|
659
|
-
ActionController::RoutingError (No route matches [GET] "/"):
|
660
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
661
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
662
|
-
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
663
|
-
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
664
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
665
|
-
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
666
|
-
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
667
|
-
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
668
|
-
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
669
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
670
|
-
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
671
|
-
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
672
|
-
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
673
|
-
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
674
|
-
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
675
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
676
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
677
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
678
|
-
|
679
|
-
|
680
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (4.8ms)
|
681
|
-
|
682
|
-
|
683
|
-
Started GET "/" for 127.0.0.1 at 2012-10-17 22:09:32 +0300
|
684
|
-
|
685
|
-
ActionController::RoutingError (No route matches [GET] "/"):
|
686
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
687
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
688
|
-
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
689
|
-
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
690
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
691
|
-
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
692
|
-
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
693
|
-
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
694
|
-
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
695
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
696
|
-
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
697
|
-
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
698
|
-
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
699
|
-
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
700
|
-
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
701
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
702
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
703
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
704
|
-
|
705
|
-
|
706
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
707
|
-
|
708
|
-
|
709
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-10-17 22:09:33 +0300
|
710
|
-
Processing by ProjectsController#new as HTML
|
711
|
-
Rendered projects/_task_fields.html.erb (20.5ms)
|
712
|
-
Rendered projects/new.html.erb within layouts/application (178.0ms)
|
713
|
-
Completed 200 OK in 211ms (Views: 205.7ms | ActiveRecord: 0.7ms)
|
714
|
-
|
715
|
-
|
716
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-17 22:09:34 +0300
|
717
|
-
Compiled jquery_nested_form.js (1ms) (pid 71916)
|
718
|
-
Served asset /jquery_nested_form.js - 200 OK (139ms)
|
719
|
-
|
720
|
-
|
721
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-17 22:09:34 +0300
|
722
|
-
Served asset /jquery_events_test.js - 200 OK (36ms)
|
723
|
-
|
724
|
-
|
725
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-17 22:09:34 +0300
|
726
|
-
Served asset /jquery.js - 200 OK (114ms)
|
727
|
-
|
728
|
-
|
729
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-10-17 22:10:27 +0300
|
730
|
-
Processing by ProjectsController#new as HTML
|
731
|
-
Rendered projects/_task_fields.html.erb (1.3ms)
|
732
|
-
Rendered projects/_task_fields.html.erb (0.6ms)
|
733
|
-
Rendered projects/new.html.erb within layouts/application (32.4ms)
|
734
|
-
Completed 200 OK in 49ms (Views: 48.2ms | ActiveRecord: 0.0ms)
|
735
|
-
|
736
|
-
|
737
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-17 22:10:27 +0300
|
738
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
739
|
-
|
740
|
-
|
741
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-17 22:10:27 +0300
|
742
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
743
|
-
|
744
|
-
|
745
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-17 22:10:27 +0300
|
746
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
747
|
-
|
748
|
-
|
749
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-10-17 22:10:32 +0300
|
750
|
-
Processing by ProjectsController#new as HTML
|
751
|
-
Rendered projects/_task_fields.html.erb (0.6ms)
|
752
|
-
Rendered projects/_task_fields.html.erb (1.2ms)
|
753
|
-
Rendered projects/new.html.erb within layouts/application (36.7ms)
|
754
|
-
Completed 200 OK in 40ms (Views: 39.3ms | ActiveRecord: 0.0ms)
|
755
|
-
|
756
|
-
|
757
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-17 22:10:32 +0300
|
758
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
759
|
-
|
760
|
-
|
761
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-17 22:10:32 +0300
|
762
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
763
|
-
|
764
|
-
|
765
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-17 22:10:32 +0300
|
766
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
767
|
-
Connecting to database specified by database.yml
|
768
|
-
|
769
|
-
|
770
|
-
Started GET "/projects/new" for 127.0.0.1 at 2012-10-18 21:56:00 +0300
|
771
|
-
Processing by ProjectsController#new as HTML
|
772
|
-
Rendered projects/_form_table.html.erb (159.6ms)
|
773
|
-
Rendered projects/edit.html.erb within layouts/application (188.9ms)
|
774
|
-
Completed 200 OK in 247ms (Views: 243.0ms | ActiveRecord: 0.7ms)
|
775
|
-
|
776
|
-
|
777
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:56:01 +0300
|
778
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (142ms)
|
779
|
-
|
780
|
-
|
781
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:56:01 +0300
|
782
|
-
Served asset /jquery.js - 200 OK (47ms)
|
783
|
-
|
784
|
-
|
785
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:56:01 +0300
|
786
|
-
Served asset /jquery_events_test.js - 304 Not Modified (6ms)
|
787
|
-
|
788
|
-
|
789
|
-
Started POST "/projects" for 127.0.0.1 at 2012-10-18 21:56:15 +0300
|
790
|
-
Processing by ProjectsController#create as HTML
|
791
|
-
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"1350586565282"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"1350586571951"=>{"name"=>"123", "_destroy"=>"false"}}}, "1350586564703"=>{"name"=>"", "_destroy"=>"false"}, "1350586563513"=>{"name"=>"", "_destroy"=>"false"}}}, "commit"=>"Create Project"}
|
792
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
793
|
-
[1m[35mSQL (12.7ms)[0m INSERT INTO "projects" ("name") VALUES (?) [["name", "123"]]
|
794
|
-
[1m[36mSQL (10.2ms)[0m [1mINSERT INTO "tasks" ("name", "project_id") VALUES (?, ?)[0m [["name", "123"], ["project_id", 2]]
|
795
|
-
[1m[35mSQL (0.8ms)[0m INSERT INTO "milestones" ("name", "task_id") VALUES (?, ?) [["name", "123"], ["task_id", 2]]
|
796
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks" ("name", "project_id") VALUES (?, ?)[0m [["name", ""], ["project_id", 2]]
|
797
|
-
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks" ("name", "project_id") VALUES (?, ?) [["name", ""], ["project_id", 2]]
|
798
|
-
[1m[36m (3.0ms)[0m [1mcommit transaction[0m
|
799
|
-
Redirected to http://localhost:3000/projects
|
800
|
-
Completed 302 Found in 87ms (ActiveRecord: 27.0ms)
|
801
|
-
|
802
|
-
|
803
|
-
Started GET "/projects" for 127.0.0.1 at 2012-10-18 21:56:15 +0300
|
804
|
-
Processing by ProjectsController#index as HTML
|
805
|
-
[1m[35mProject Load (0.2ms)[0m SELECT "projects".* FROM "projects"
|
806
|
-
Rendered projects/index.html.erb within layouts/application (1.4ms)
|
807
|
-
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.2ms)
|
808
|
-
|
809
|
-
|
810
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:56:15 +0300
|
811
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
812
|
-
|
813
|
-
|
814
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:56:15 +0300
|
815
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
816
|
-
|
817
|
-
|
818
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:56:18 +0300
|
819
|
-
Processing by ProjectsController#edit as HTML
|
820
|
-
Parameters: {"id"=>"2"}
|
821
|
-
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
822
|
-
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
823
|
-
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
824
|
-
[1m[35mMilestone Load (0.2ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
825
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
826
|
-
Rendered projects/_form_table.html.erb (11.0ms)
|
827
|
-
Rendered projects/edit.html.erb within layouts/application (11.6ms)
|
828
|
-
Completed 200 OK in 16ms (Views: 13.6ms | ActiveRecord: 0.9ms)
|
829
|
-
|
830
|
-
|
831
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:56:18 +0300
|
832
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
833
|
-
|
834
|
-
|
835
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:56:18 +0300
|
836
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
837
|
-
|
838
|
-
|
839
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:56:21 +0300
|
840
|
-
Processing by ProjectsController#edit as HTML
|
841
|
-
Parameters: {"id"=>"2"}
|
842
|
-
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
843
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
844
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
845
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
846
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
847
|
-
Rendered projects/_form_table.html.erb (8.7ms)
|
848
|
-
Rendered projects/edit.html.erb within layouts/application (9.3ms)
|
849
|
-
Completed 200 OK in 13ms (Views: 11.2ms | ActiveRecord: 0.7ms)
|
850
|
-
|
851
|
-
|
852
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:56:21 +0300
|
853
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
854
|
-
|
855
|
-
|
856
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:56:21 +0300
|
857
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
858
|
-
|
859
|
-
|
860
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:56:21 +0300
|
861
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
862
|
-
|
863
|
-
|
864
|
-
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 21:56:24 +0300
|
865
|
-
Processing by ProjectsController#update as HTML
|
866
|
-
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "id"=>"1"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
867
|
-
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
868
|
-
[1m[35m (0.1ms)[0m begin transaction
|
869
|
-
[1m[36mTask Load (0.4ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)[0m
|
870
|
-
[1m[35mMilestone Load (0.4ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1)
|
871
|
-
[1m[36m (0.4ms)[0m [1mUPDATE "tasks" SET "name" = '123123' WHERE "tasks"."id" = 3[0m
|
872
|
-
[1m[35m (2.4ms)[0m commit transaction
|
873
|
-
Redirected to http://localhost:3000/projects/2/edit
|
874
|
-
Completed 302 Found in 45ms (ActiveRecord: 3.9ms)
|
875
|
-
|
876
|
-
|
877
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:56:25 +0300
|
878
|
-
Processing by ProjectsController#edit as HTML
|
879
|
-
Parameters: {"id"=>"2"}
|
880
|
-
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
881
|
-
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
882
|
-
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
883
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
884
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
885
|
-
Rendered projects/_form_table.html.erb (30.9ms)
|
886
|
-
Rendered projects/edit.html.erb within layouts/application (31.6ms)
|
887
|
-
Completed 200 OK in 35ms (Views: 33.8ms | ActiveRecord: 0.8ms)
|
888
|
-
|
889
|
-
|
890
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:56:25 +0300
|
891
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
892
|
-
|
893
|
-
|
894
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:56:25 +0300
|
895
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
896
|
-
|
897
|
-
|
898
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:56:25 +0300
|
899
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
900
|
-
|
901
|
-
|
902
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:56:26 +0300
|
903
|
-
Processing by ProjectsController#edit as HTML
|
904
|
-
Parameters: {"id"=>"2"}
|
905
|
-
[1m[35mProject Load (0.2ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
906
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
907
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
908
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
909
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
910
|
-
Rendered projects/_form_table.html.erb (8.9ms)
|
911
|
-
Rendered projects/edit.html.erb within layouts/application (9.5ms)
|
912
|
-
Completed 200 OK in 14ms (Views: 11.8ms | ActiveRecord: 0.6ms)
|
913
|
-
|
914
|
-
|
915
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:56:26 +0300
|
916
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
917
|
-
|
918
|
-
|
919
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:56:26 +0300
|
920
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
921
|
-
|
922
|
-
|
923
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:56:26 +0300
|
924
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
925
|
-
|
926
|
-
|
927
|
-
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 21:56:40 +0300
|
928
|
-
Processing by ProjectsController#update as HTML
|
929
|
-
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"1"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
930
|
-
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
931
|
-
[1m[35m (0.1ms)[0m begin transaction
|
932
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)[0m
|
933
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1)
|
934
|
-
[1m[36m (0.3ms)[0m [1mUPDATE "milestones" SET "name" = '123123' WHERE "milestones"."id" = 1[0m
|
935
|
-
[1m[35m (3.5ms)[0m commit transaction
|
936
|
-
Redirected to http://localhost:3000/projects/2/edit
|
937
|
-
Completed 302 Found in 11ms (ActiveRecord: 4.3ms)
|
938
|
-
|
939
|
-
|
940
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:56:40 +0300
|
941
|
-
Processing by ProjectsController#edit as HTML
|
942
|
-
Parameters: {"id"=>"2"}
|
943
|
-
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
944
|
-
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
945
|
-
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
946
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
947
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
948
|
-
Rendered projects/_form_table.html.erb (10.8ms)
|
949
|
-
Rendered projects/edit.html.erb within layouts/application (11.5ms)
|
950
|
-
Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.8ms)
|
951
|
-
|
952
|
-
|
953
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:56:40 +0300
|
954
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
955
|
-
|
956
|
-
|
957
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:56:40 +0300
|
958
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
959
|
-
|
960
|
-
|
961
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:56:40 +0300
|
962
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
963
|
-
|
964
|
-
|
965
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:56:42 +0300
|
966
|
-
Processing by ProjectsController#edit as HTML
|
967
|
-
Parameters: {"id"=>"2"}
|
968
|
-
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
969
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
970
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
971
|
-
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
972
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
973
|
-
Rendered projects/_form_table.html.erb (33.5ms)
|
974
|
-
Rendered projects/edit.html.erb within layouts/application (34.4ms)
|
975
|
-
Completed 200 OK in 39ms (Views: 36.8ms | ActiveRecord: 0.8ms)
|
976
|
-
|
977
|
-
|
978
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:56:42 +0300
|
979
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
980
|
-
|
981
|
-
|
982
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:56:42 +0300
|
983
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
984
|
-
|
985
|
-
|
986
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:56:42 +0300
|
987
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
988
|
-
|
989
|
-
|
990
|
-
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 21:56:49 +0300
|
991
|
-
Processing by ProjectsController#update as HTML
|
992
|
-
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"name"=>"", "_destroy"=>"false", "id"=>"1"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
993
|
-
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
994
|
-
[1m[35m (0.1ms)[0m begin transaction
|
995
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)[0m
|
996
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1)
|
997
|
-
[1m[36m (0.3ms)[0m [1mUPDATE "milestones" SET "name" = '' WHERE "milestones"."id" = 1[0m
|
998
|
-
[1m[35m (2.6ms)[0m commit transaction
|
999
|
-
Redirected to http://localhost:3000/projects/2/edit
|
1000
|
-
Completed 302 Found in 9ms (ActiveRecord: 3.4ms)
|
1001
|
-
|
1002
|
-
|
1003
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:56:49 +0300
|
1004
|
-
Processing by ProjectsController#edit as HTML
|
1005
|
-
Parameters: {"id"=>"2"}
|
1006
|
-
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1007
|
-
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1008
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1009
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1010
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1011
|
-
Rendered projects/_form_table.html.erb (9.0ms)
|
1012
|
-
Rendered projects/edit.html.erb within layouts/application (9.6ms)
|
1013
|
-
Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.6ms)
|
1014
|
-
|
1015
|
-
|
1016
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:56:49 +0300
|
1017
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1018
|
-
|
1019
|
-
|
1020
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:56:49 +0300
|
1021
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1022
|
-
|
1023
|
-
|
1024
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:56:49 +0300
|
1025
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1026
|
-
|
1027
|
-
|
1028
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:56:50 +0300
|
1029
|
-
Processing by ProjectsController#edit as HTML
|
1030
|
-
Parameters: {"id"=>"2"}
|
1031
|
-
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1032
|
-
[1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1033
|
-
[1m[35mMilestone Load (0.2ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1034
|
-
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1035
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1036
|
-
Rendered projects/_form_table.html.erb (11.0ms)
|
1037
|
-
Rendered projects/edit.html.erb within layouts/application (11.7ms)
|
1038
|
-
Completed 200 OK in 16ms (Views: 13.7ms | ActiveRecord: 0.9ms)
|
1039
|
-
|
1040
|
-
|
1041
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:56:51 +0300
|
1042
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1043
|
-
|
1044
|
-
|
1045
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:56:51 +0300
|
1046
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1047
|
-
|
1048
|
-
|
1049
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:56:51 +0300
|
1050
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1051
|
-
|
1052
|
-
|
1053
|
-
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 21:56:55 +0300
|
1054
|
-
Processing by ProjectsController#update as HTML
|
1055
|
-
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"name"=>"", "_destroy"=>"false", "id"=>"1"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
1056
|
-
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1057
|
-
[1m[35m (0.1ms)[0m begin transaction
|
1058
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)[0m
|
1059
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1)
|
1060
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1061
|
-
Redirected to http://localhost:3000/projects/2/edit
|
1062
|
-
Completed 302 Found in 5ms (ActiveRecord: 0.5ms)
|
1063
|
-
|
1064
|
-
|
1065
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:56:55 +0300
|
1066
|
-
Processing by ProjectsController#edit as HTML
|
1067
|
-
Parameters: {"id"=>"2"}
|
1068
|
-
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1069
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1070
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1071
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1072
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1073
|
-
Rendered projects/_form_table.html.erb (9.1ms)
|
1074
|
-
Rendered projects/edit.html.erb within layouts/application (9.7ms)
|
1075
|
-
Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.7ms)
|
1076
|
-
|
1077
|
-
|
1078
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:56:55 +0300
|
1079
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1080
|
-
|
1081
|
-
|
1082
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:56:55 +0300
|
1083
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1084
|
-
|
1085
|
-
|
1086
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:56:55 +0300
|
1087
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1088
|
-
|
1089
|
-
|
1090
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:57:00 +0300
|
1091
|
-
Processing by ProjectsController#edit as HTML
|
1092
|
-
Parameters: {"id"=>"2"}
|
1093
|
-
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1094
|
-
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1095
|
-
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1096
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1097
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1098
|
-
Rendered projects/_form_table.html.erb (10.3ms)
|
1099
|
-
Rendered projects/edit.html.erb within layouts/application (10.9ms)
|
1100
|
-
Completed 200 OK in 15ms (Views: 13.2ms | ActiveRecord: 0.7ms)
|
1101
|
-
|
1102
|
-
|
1103
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:57:00 +0300
|
1104
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1105
|
-
|
1106
|
-
|
1107
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:57:00 +0300
|
1108
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1109
|
-
|
1110
|
-
|
1111
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:57:00 +0300
|
1112
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1113
|
-
|
1114
|
-
|
1115
|
-
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 21:57:03 +0300
|
1116
|
-
Processing by ProjectsController#update as HTML
|
1117
|
-
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"1"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
1118
|
-
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1119
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1120
|
-
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)
|
1121
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1)[0m
|
1122
|
-
[1m[35m (0.3ms)[0m UPDATE "milestones" SET "name" = '123123' WHERE "milestones"."id" = 1
|
1123
|
-
[1m[36m (3.4ms)[0m [1mcommit transaction[0m
|
1124
|
-
Redirected to http://localhost:3000/projects/2/edit
|
1125
|
-
Completed 302 Found in 10ms (ActiveRecord: 4.3ms)
|
1126
|
-
|
1127
|
-
|
1128
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:57:03 +0300
|
1129
|
-
Processing by ProjectsController#edit as HTML
|
1130
|
-
Parameters: {"id"=>"2"}
|
1131
|
-
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1132
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1133
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1134
|
-
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1135
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1136
|
-
Rendered projects/_form_table.html.erb (9.2ms)
|
1137
|
-
Rendered projects/edit.html.erb within layouts/application (9.8ms)
|
1138
|
-
Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.7ms)
|
1139
|
-
|
1140
|
-
|
1141
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:57:03 +0300
|
1142
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1143
|
-
|
1144
|
-
|
1145
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:57:03 +0300
|
1146
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1147
|
-
|
1148
|
-
|
1149
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:57:03 +0300
|
1150
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1151
|
-
|
1152
|
-
|
1153
|
-
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 21:57:03 +0300
|
1154
|
-
Processing by ProjectsController#update as HTML
|
1155
|
-
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"1"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
1156
|
-
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1157
|
-
[1m[35m (0.1ms)[0m begin transaction
|
1158
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)[0m
|
1159
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1)
|
1160
|
-
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
1161
|
-
Redirected to http://localhost:3000/projects/2/edit
|
1162
|
-
Completed 302 Found in 5ms (ActiveRecord: 0.5ms)
|
1163
|
-
|
1164
|
-
|
1165
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:57:03 +0300
|
1166
|
-
Processing by ProjectsController#edit as HTML
|
1167
|
-
Parameters: {"id"=>"2"}
|
1168
|
-
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1169
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1170
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1171
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1172
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1173
|
-
Rendered projects/_form_table.html.erb (9.0ms)
|
1174
|
-
Rendered projects/edit.html.erb within layouts/application (9.7ms)
|
1175
|
-
Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.7ms)
|
1176
|
-
|
1177
|
-
|
1178
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:57:03 +0300
|
1179
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1180
|
-
|
1181
|
-
|
1182
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:57:03 +0300
|
1183
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1184
|
-
|
1185
|
-
|
1186
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:57:03 +0300
|
1187
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1188
|
-
|
1189
|
-
|
1190
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:57:05 +0300
|
1191
|
-
Processing by ProjectsController#edit as HTML
|
1192
|
-
Parameters: {"id"=>"2"}
|
1193
|
-
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1194
|
-
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1195
|
-
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1196
|
-
[1m[35mMilestone Load (0.2ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1197
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1198
|
-
Rendered projects/_form_table.html.erb (9.5ms)
|
1199
|
-
Rendered projects/edit.html.erb within layouts/application (10.2ms)
|
1200
|
-
Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.7ms)
|
1201
|
-
|
1202
|
-
|
1203
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:57:05 +0300
|
1204
|
-
Served asset /jquery_events_test.js - 304 Not Modified (1ms)
|
1205
|
-
|
1206
|
-
|
1207
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:57:05 +0300
|
1208
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1209
|
-
|
1210
|
-
|
1211
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:57:05 +0300
|
1212
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1213
|
-
|
1214
|
-
|
1215
|
-
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 21:57:08 +0300
|
1216
|
-
Processing by ProjectsController#update as HTML
|
1217
|
-
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"1"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
1218
|
-
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1219
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1220
|
-
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)
|
1221
|
-
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1)[0m
|
1222
|
-
[1m[35m (0.1ms)[0m commit transaction
|
1223
|
-
Redirected to http://localhost:3000/projects/2/edit
|
1224
|
-
Completed 302 Found in 6ms (ActiveRecord: 0.7ms)
|
1225
|
-
|
1226
|
-
|
1227
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:57:08 +0300
|
1228
|
-
Processing by ProjectsController#edit as HTML
|
1229
|
-
Parameters: {"id"=>"2"}
|
1230
|
-
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1231
|
-
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1232
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1233
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1234
|
-
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1235
|
-
Rendered projects/_form_table.html.erb (36.7ms)
|
1236
|
-
Rendered projects/edit.html.erb within layouts/application (37.4ms)
|
1237
|
-
Completed 200 OK in 41ms (Views: 39.5ms | ActiveRecord: 0.7ms)
|
1238
|
-
|
1239
|
-
|
1240
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:57:09 +0300
|
1241
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1242
|
-
|
1243
|
-
|
1244
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:57:09 +0300
|
1245
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1246
|
-
|
1247
|
-
|
1248
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:57:09 +0300
|
1249
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1250
|
-
|
1251
|
-
|
1252
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:57:09 +0300
|
1253
|
-
Processing by ProjectsController#edit as HTML
|
1254
|
-
Parameters: {"id"=>"2"}
|
1255
|
-
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1256
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1257
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1258
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1259
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1260
|
-
Rendered projects/_form_table.html.erb (9.2ms)
|
1261
|
-
Rendered projects/edit.html.erb within layouts/application (9.8ms)
|
1262
|
-
Completed 200 OK in 14ms (Views: 12.1ms | ActiveRecord: 0.6ms)
|
1263
|
-
|
1264
|
-
|
1265
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:57:10 +0300
|
1266
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1267
|
-
|
1268
|
-
|
1269
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:57:10 +0300
|
1270
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1271
|
-
|
1272
|
-
|
1273
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:57:10 +0300
|
1274
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1275
|
-
|
1276
|
-
|
1277
|
-
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 21:57:33 +0300
|
1278
|
-
Processing by ProjectsController#update as HTML
|
1279
|
-
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"name"=>"123123123123", "_destroy"=>"false", "id"=>"1"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
1280
|
-
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1281
|
-
[1m[35m (0.1ms)[0m begin transaction
|
1282
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)[0m
|
1283
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1)
|
1284
|
-
[1m[36m (0.3ms)[0m [1mUPDATE "milestones" SET "name" = '123123123123' WHERE "milestones"."id" = 1[0m
|
1285
|
-
[1m[35m (7.3ms)[0m commit transaction
|
1286
|
-
Redirected to http://localhost:3000/projects/2/edit
|
1287
|
-
Completed 302 Found in 13ms (ActiveRecord: 8.1ms)
|
1288
|
-
|
1289
|
-
|
1290
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:57:33 +0300
|
1291
|
-
Processing by ProjectsController#edit as HTML
|
1292
|
-
Parameters: {"id"=>"2"}
|
1293
|
-
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1294
|
-
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1295
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1296
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1297
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1298
|
-
Rendered projects/_form_table.html.erb (9.5ms)
|
1299
|
-
Rendered projects/edit.html.erb within layouts/application (10.2ms)
|
1300
|
-
Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.7ms)
|
1301
|
-
|
1302
|
-
|
1303
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:57:33 +0300
|
1304
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1305
|
-
|
1306
|
-
|
1307
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:57:33 +0300
|
1308
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1309
|
-
|
1310
|
-
|
1311
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:57:33 +0300
|
1312
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1313
|
-
Connecting to database specified by database.yml
|
1314
|
-
|
1315
|
-
|
1316
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:58:53 +0300
|
1317
|
-
Processing by ProjectsController#edit as HTML
|
1318
|
-
Parameters: {"id"=>"2"}
|
1319
|
-
[1m[36mProject Load (12.7ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1320
|
-
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1321
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1322
|
-
[1m[35mMilestone Load (0.2ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1323
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1324
|
-
Rendered projects/_form_table.html.erb (152.4ms)
|
1325
|
-
Rendered projects/edit.html.erb within layouts/application (159.4ms)
|
1326
|
-
Completed 200 OK in 226ms (Views: 205.1ms | ActiveRecord: 13.8ms)
|
1327
|
-
|
1328
|
-
|
1329
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:58:54 +0300
|
1330
|
-
Served asset /jquery.js - 304 Not Modified (53ms)
|
1331
|
-
|
1332
|
-
|
1333
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:58:54 +0300
|
1334
|
-
Served asset /jquery_events_test.js - 304 Not Modified (10ms)
|
1335
|
-
|
1336
|
-
|
1337
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:58:54 +0300
|
1338
|
-
Compiled jquery_nested_form.js (12ms) (pid 73344)
|
1339
|
-
Served asset /jquery_nested_form.js - 200 OK (114ms)
|
1340
|
-
|
1341
|
-
|
1342
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:59:02 +0300
|
1343
|
-
Processing by ProjectsController#edit as HTML
|
1344
|
-
Parameters: {"id"=>"2"}
|
1345
|
-
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1346
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1347
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1348
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1349
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1350
|
-
Rendered projects/_form_table.html.erb (9.0ms)
|
1351
|
-
Rendered projects/edit.html.erb within layouts/application (9.6ms)
|
1352
|
-
Completed 200 OK in 13ms (Views: 11.7ms | ActiveRecord: 0.7ms)
|
1353
|
-
|
1354
|
-
|
1355
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:59:02 +0300
|
1356
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1357
|
-
|
1358
|
-
|
1359
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:59:02 +0300
|
1360
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1361
|
-
|
1362
|
-
|
1363
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:59:02 +0300
|
1364
|
-
Served asset /jquery.js - 304 Not Modified (1ms)
|
1365
|
-
|
1366
|
-
|
1367
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:00:41 +0300
|
1368
|
-
Processing by ProjectsController#edit as HTML
|
1369
|
-
Parameters: {"id"=>"2"}
|
1370
|
-
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1371
|
-
[1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1372
|
-
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1373
|
-
[1m[35mMilestone Load (0.3ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1374
|
-
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1375
|
-
Rendered projects/_form_table.html.erb (14.5ms)
|
1376
|
-
Rendered projects/edit.html.erb within layouts/application (66.2ms)
|
1377
|
-
Completed 200 OK in 70ms (Views: 67.7ms | ActiveRecord: 1.1ms)
|
1378
|
-
|
1379
|
-
|
1380
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:00:41 +0300
|
1381
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1382
|
-
|
1383
|
-
|
1384
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:00:41 +0300
|
1385
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1386
|
-
|
1387
|
-
|
1388
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:00:41 +0300
|
1389
|
-
Compiled jquery_nested_form.js (0ms) (pid 73344)
|
1390
|
-
Served asset /jquery_nested_form.js - 200 OK (14ms)
|
1391
|
-
|
1392
|
-
|
1393
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:01:15 +0300
|
1394
|
-
Processing by ProjectsController#edit as HTML
|
1395
|
-
Parameters: {"id"=>"2"}
|
1396
|
-
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1397
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1398
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1399
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1400
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1401
|
-
Rendered projects/_form_table.html.erb (8.2ms)
|
1402
|
-
Rendered projects/edit.html.erb within layouts/application (8.8ms)
|
1403
|
-
Completed 200 OK in 13ms (Views: 11.0ms | ActiveRecord: 0.7ms)
|
1404
|
-
|
1405
|
-
|
1406
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:01:15 +0300
|
1407
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1408
|
-
|
1409
|
-
|
1410
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:01:15 +0300
|
1411
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1412
|
-
|
1413
|
-
|
1414
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:01:15 +0300
|
1415
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1416
|
-
|
1417
|
-
|
1418
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:01:17 +0300
|
1419
|
-
Processing by ProjectsController#edit as HTML
|
1420
|
-
Parameters: {"id"=>"2"}
|
1421
|
-
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1422
|
-
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1423
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1424
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1425
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1426
|
-
Rendered projects/_form_table.html.erb (8.0ms)
|
1427
|
-
Rendered projects/edit.html.erb within layouts/application (8.5ms)
|
1428
|
-
Completed 200 OK in 12ms (Views: 10.3ms | ActiveRecord: 0.6ms)
|
1429
|
-
|
1430
|
-
|
1431
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:01:17 +0300
|
1432
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1433
|
-
|
1434
|
-
|
1435
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:01:17 +0300
|
1436
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1437
|
-
|
1438
|
-
|
1439
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:01:17 +0300
|
1440
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1441
|
-
Connecting to database specified by database.yml
|
1442
|
-
|
1443
|
-
|
1444
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:03:15 +0300
|
1445
|
-
|
1446
|
-
ActionController::RoutingError (No route matches [GET] "/projects/2/edit"):
|
1447
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1448
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1449
|
-
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
1450
|
-
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
1451
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1452
|
-
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
1453
|
-
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
1454
|
-
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1455
|
-
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
1456
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
1457
|
-
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
1458
|
-
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
1459
|
-
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
1460
|
-
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
1461
|
-
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
1462
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1463
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1464
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1465
|
-
|
1466
|
-
|
1467
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (4.6ms)
|
1468
|
-
|
1469
|
-
|
1470
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:03:19 +0300
|
1471
|
-
|
1472
|
-
ActionController::RoutingError (No route matches [GET] "/projects/2/edit"):
|
1473
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1474
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1475
|
-
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
1476
|
-
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
1477
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1478
|
-
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
1479
|
-
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
1480
|
-
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1481
|
-
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
1482
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
1483
|
-
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
1484
|
-
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
1485
|
-
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
1486
|
-
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
1487
|
-
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
1488
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1489
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1490
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1491
|
-
|
1492
|
-
|
1493
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
1494
|
-
|
1495
|
-
|
1496
|
-
Started GET "/projects/2" for 127.0.0.1 at 2012-10-18 22:03:22 +0300
|
1497
|
-
|
1498
|
-
AbstractController::ActionNotFound (The action '2' could not be found for ProjectsController):
|
1499
|
-
actionpack (3.2.8) lib/abstract_controller/base.rb:116:in `process'
|
1500
|
-
actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
|
1501
|
-
actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
|
1502
|
-
actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
1503
|
-
actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
|
1504
|
-
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
1505
|
-
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
1506
|
-
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
1507
|
-
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
1508
|
-
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
1509
|
-
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
1510
|
-
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
|
1511
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
1512
|
-
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
1513
|
-
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
1514
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
|
1515
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
1516
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
1517
|
-
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
1518
|
-
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
1519
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
|
1520
|
-
activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
|
1521
|
-
activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
|
1522
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
1523
|
-
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__2072785776171806141__call__2962146054285193037__callbacks'
|
1524
|
-
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
1525
|
-
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
1526
|
-
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1527
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1528
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
1529
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
1530
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
1531
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1532
|
-
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
1533
|
-
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
1534
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1535
|
-
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
1536
|
-
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
1537
|
-
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1538
|
-
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
1539
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
1540
|
-
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
1541
|
-
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
1542
|
-
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
1543
|
-
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
1544
|
-
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
1545
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1546
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1547
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1548
|
-
|
1549
|
-
|
1550
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.8ms)
|
1551
|
-
|
1552
|
-
|
1553
|
-
Started GET "/projects" for 127.0.0.1 at 2012-10-18 22:03:25 +0300
|
1554
|
-
|
1555
|
-
ActionController::RoutingError (No route matches [GET] "/projects"):
|
1556
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1557
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1558
|
-
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
1559
|
-
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
1560
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1561
|
-
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
1562
|
-
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
1563
|
-
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1564
|
-
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
1565
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
1566
|
-
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
1567
|
-
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
1568
|
-
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
1569
|
-
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
1570
|
-
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
1571
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1572
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1573
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1574
|
-
|
1575
|
-
|
1576
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
1577
|
-
Connecting to database specified by database.yml
|
1578
|
-
|
1579
|
-
|
1580
|
-
Started GET "/projects" for 127.0.0.1 at 2012-10-18 22:04:06 +0300
|
1581
|
-
Processing by ProjectsController#index as HTML
|
1582
|
-
[1m[36mProject Load (13.9ms)[0m [1mSELECT "projects".* FROM "projects" [0m
|
1583
|
-
Rendered projects/index.html.erb within layouts/application (4.4ms)
|
1584
|
-
Completed 200 OK in 71ms (Views: 50.0ms | ActiveRecord: 13.9ms)
|
1585
|
-
|
1586
|
-
|
1587
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:04:07 +0300
|
1588
|
-
Compiled jquery_nested_form.js (0ms) (pid 73504)
|
1589
|
-
Served asset /jquery_nested_form.js - 200 OK (23ms)
|
1590
|
-
|
1591
|
-
|
1592
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:04:07 +0300
|
1593
|
-
Served asset /jquery.js - 304 Not Modified (44ms)
|
1594
|
-
|
1595
|
-
|
1596
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:04:07 +0300
|
1597
|
-
Served asset /jquery_events_test.js - 304 Not Modified (9ms)
|
1598
|
-
|
1599
|
-
|
1600
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:04:08 +0300
|
1601
|
-
Processing by ProjectsController#edit as HTML
|
1602
|
-
Parameters: {"id"=>"2"}
|
1603
|
-
[1m[35mProject Load (0.3ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1604
|
-
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1605
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1606
|
-
[1m[36mMilestone Load (0.3ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1607
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1608
|
-
Rendered projects/_form.html.erb (178.2ms)
|
1609
|
-
Rendered projects/edit.html.erb within layouts/application (487.0ms)
|
1610
|
-
Completed 200 OK in 493ms (Views: 489.0ms | ActiveRecord: 1.5ms)
|
1611
|
-
|
1612
|
-
|
1613
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:04:09 +0300
|
1614
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1615
|
-
|
1616
|
-
|
1617
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:04:09 +0300
|
1618
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1619
|
-
|
1620
|
-
|
1621
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:04:19 +0300
|
1622
|
-
Processing by ProjectsController#edit as HTML
|
1623
|
-
Parameters: {"id"=>"2"}
|
1624
|
-
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1625
|
-
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1626
|
-
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1627
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1628
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1629
|
-
Rendered projects/_form_table.html.erb (41.3ms)
|
1630
|
-
Rendered projects/edit.html.erb within layouts/application (42.7ms)
|
1631
|
-
Completed 200 OK in 47ms (Views: 44.9ms | ActiveRecord: 0.8ms)
|
1632
|
-
|
1633
|
-
|
1634
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:04:19 +0300
|
1635
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1636
|
-
|
1637
|
-
|
1638
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:04:19 +0300
|
1639
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1640
|
-
|
1641
|
-
|
1642
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:04:19 +0300
|
1643
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1644
|
-
|
1645
|
-
|
1646
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:04:29 +0300
|
1647
|
-
Processing by ProjectsController#edit as HTML
|
1648
|
-
Parameters: {"id"=>"2"}
|
1649
|
-
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1650
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1651
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1652
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1653
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1654
|
-
Rendered projects/_form_table.html.erb (8.4ms)
|
1655
|
-
Rendered projects/edit.html.erb within layouts/application (9.0ms)
|
1656
|
-
Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.6ms)
|
1657
|
-
|
1658
|
-
|
1659
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:04:29 +0300
|
1660
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1661
|
-
|
1662
|
-
|
1663
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:04:29 +0300
|
1664
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1665
|
-
|
1666
|
-
|
1667
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:04:29 +0300
|
1668
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1669
|
-
|
1670
|
-
|
1671
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:06:42 +0300
|
1672
|
-
Processing by ProjectsController#edit as HTML
|
1673
|
-
Parameters: {"id"=>"2"}
|
1674
|
-
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1675
|
-
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1676
|
-
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1677
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1678
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1679
|
-
Rendered projects/_form_table.html.erb (10.2ms)
|
1680
|
-
Rendered projects/edit.html.erb within layouts/application (11.1ms)
|
1681
|
-
Completed 200 OK in 23ms (Views: 13.6ms | ActiveRecord: 0.8ms)
|
1682
|
-
|
1683
|
-
|
1684
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:06:42 +0300
|
1685
|
-
Compiled jquery_nested_form.js (0ms) (pid 73504)
|
1686
|
-
Served asset /jquery_nested_form.js - 200 OK (51ms)
|
1687
|
-
|
1688
|
-
|
1689
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:06:42 +0300
|
1690
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1691
|
-
|
1692
|
-
|
1693
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:06:42 +0300
|
1694
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1695
|
-
|
1696
|
-
|
1697
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:07:47 +0300
|
1698
|
-
Processing by ProjectsController#edit as HTML
|
1699
|
-
Parameters: {"id"=>"2"}
|
1700
|
-
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1701
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1702
|
-
[1m[35mMilestone Load (0.2ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1703
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1704
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1705
|
-
Rendered projects/_form_table.html.erb (31.4ms)
|
1706
|
-
Rendered projects/edit.html.erb within layouts/application (32.3ms)
|
1707
|
-
Completed 200 OK in 37ms (Views: 34.9ms | ActiveRecord: 0.8ms)
|
1708
|
-
|
1709
|
-
|
1710
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:07:47 +0300
|
1711
|
-
Compiled jquery_nested_form.js (0ms) (pid 73504)
|
1712
|
-
Served asset /jquery_nested_form.js - 200 OK (49ms)
|
1713
|
-
|
1714
|
-
|
1715
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:07:47 +0300
|
1716
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1717
|
-
|
1718
|
-
|
1719
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:07:47 +0300
|
1720
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1721
|
-
|
1722
|
-
|
1723
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:08:01 +0300
|
1724
|
-
Processing by ProjectsController#edit as HTML
|
1725
|
-
Parameters: {"id"=>"2"}
|
1726
|
-
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1727
|
-
[1m[35mTask Load (0.5ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1728
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1729
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1730
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1731
|
-
Rendered projects/_form_table.html.erb (9.8ms)
|
1732
|
-
Rendered projects/edit.html.erb within layouts/application (10.4ms)
|
1733
|
-
Completed 200 OK in 14ms (Views: 12.0ms | ActiveRecord: 0.9ms)
|
1734
|
-
|
1735
|
-
|
1736
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:08:02 +0300
|
1737
|
-
Compiled jquery_nested_form.js (0ms) (pid 73504)
|
1738
|
-
Served asset /jquery_nested_form.js - 200 OK (8ms)
|
1739
|
-
|
1740
|
-
|
1741
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:08:02 +0300
|
1742
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1743
|
-
|
1744
|
-
|
1745
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:08:02 +0300
|
1746
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1747
|
-
|
1748
|
-
|
1749
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:08:25 +0300
|
1750
|
-
Processing by ProjectsController#edit as HTML
|
1751
|
-
Parameters: {"id"=>"2"}
|
1752
|
-
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1753
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1754
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1755
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1756
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1757
|
-
Rendered projects/_form_table.html.erb (8.7ms)
|
1758
|
-
Rendered projects/edit.html.erb within layouts/application (9.4ms)
|
1759
|
-
Completed 200 OK in 13ms (Views: 11.3ms | ActiveRecord: 0.7ms)
|
1760
|
-
|
1761
|
-
|
1762
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:08:26 +0300
|
1763
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1764
|
-
|
1765
|
-
|
1766
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:08:26 +0300
|
1767
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1768
|
-
|
1769
|
-
|
1770
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:08:26 +0300
|
1771
|
-
Compiled jquery_nested_form.js (0ms) (pid 73504)
|
1772
|
-
Served asset /jquery_nested_form.js - 200 OK (9ms)
|
1773
|
-
|
1774
|
-
|
1775
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:08:44 +0300
|
1776
|
-
Processing by ProjectsController#edit as HTML
|
1777
|
-
Parameters: {"id"=>"2"}
|
1778
|
-
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1779
|
-
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1780
|
-
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1781
|
-
[1m[35mMilestone Load (0.2ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1782
|
-
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1783
|
-
Rendered projects/_form_table.html.erb (34.3ms)
|
1784
|
-
Rendered projects/edit.html.erb within layouts/application (35.0ms)
|
1785
|
-
Completed 200 OK in 39ms (Views: 36.7ms | ActiveRecord: 0.9ms)
|
1786
|
-
|
1787
|
-
|
1788
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:08:45 +0300
|
1789
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1790
|
-
|
1791
|
-
|
1792
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:08:45 +0300
|
1793
|
-
Compiled jquery_nested_form.js (0ms) (pid 73504)
|
1794
|
-
Served asset /jquery_nested_form.js - 200 OK (8ms)
|
1795
|
-
|
1796
|
-
|
1797
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:08:45 +0300
|
1798
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1799
|
-
|
1800
|
-
|
1801
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:09:11 +0300
|
1802
|
-
Processing by ProjectsController#edit as HTML
|
1803
|
-
Parameters: {"id"=>"2"}
|
1804
|
-
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1805
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1806
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1807
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1808
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1809
|
-
Rendered projects/_form_table.html.erb (8.8ms)
|
1810
|
-
Rendered projects/edit.html.erb within layouts/application (9.4ms)
|
1811
|
-
Completed 200 OK in 13ms (Views: 11.3ms | ActiveRecord: 0.6ms)
|
1812
|
-
|
1813
|
-
|
1814
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:09:11 +0300
|
1815
|
-
Compiled jquery_nested_form.js (0ms) (pid 73504)
|
1816
|
-
Served asset /jquery_nested_form.js - 200 OK (68ms)
|
1817
|
-
|
1818
|
-
|
1819
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:09:11 +0300
|
1820
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1821
|
-
|
1822
|
-
|
1823
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:09:11 +0300
|
1824
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1825
|
-
|
1826
|
-
|
1827
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:10:07 +0300
|
1828
|
-
Processing by ProjectsController#edit as HTML
|
1829
|
-
Parameters: {"id"=>"2"}
|
1830
|
-
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1831
|
-
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1832
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1833
|
-
[1m[35mMilestone Load (0.2ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1834
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1835
|
-
Rendered projects/_form_table.html.erb (8.4ms)
|
1836
|
-
Rendered projects/edit.html.erb within layouts/application (9.0ms)
|
1837
|
-
Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.7ms)
|
1838
|
-
|
1839
|
-
|
1840
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:10:07 +0300
|
1841
|
-
Compiled jquery_nested_form.js (0ms) (pid 73504)
|
1842
|
-
Served asset /jquery_nested_form.js - 200 OK (10ms)
|
1843
|
-
|
1844
|
-
|
1845
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:10:07 +0300
|
1846
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1847
|
-
|
1848
|
-
|
1849
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:10:07 +0300
|
1850
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1851
|
-
|
1852
|
-
|
1853
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:11:14 +0300
|
1854
|
-
Processing by ProjectsController#edit as HTML
|
1855
|
-
Parameters: {"id"=>"2"}
|
1856
|
-
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1857
|
-
[1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1858
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1859
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1860
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1861
|
-
Rendered projects/_form_table.html.erb (8.2ms)
|
1862
|
-
Rendered projects/edit.html.erb within layouts/application (8.8ms)
|
1863
|
-
Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.7ms)
|
1864
|
-
|
1865
|
-
|
1866
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:11:14 +0300
|
1867
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1868
|
-
|
1869
|
-
|
1870
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:11:15 +0300
|
1871
|
-
Compiled jquery_nested_form.js (0ms) (pid 73504)
|
1872
|
-
Served asset /jquery_nested_form.js - 200 OK (9ms)
|
1873
|
-
|
1874
|
-
|
1875
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:11:15 +0300
|
1876
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1877
|
-
|
1878
|
-
|
1879
|
-
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 22:11:19 +0300
|
1880
|
-
Processing by ProjectsController#update as HTML
|
1881
|
-
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"name"=>"11", "_destroy"=>"false", "id"=>"1"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
1882
|
-
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1883
|
-
[1m[35m (0.1ms)[0m begin transaction
|
1884
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)[0m
|
1885
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1)
|
1886
|
-
[1m[36m (0.4ms)[0m [1mUPDATE "milestones" SET "name" = '11' WHERE "milestones"."id" = 1[0m
|
1887
|
-
[1m[35m (2.7ms)[0m commit transaction
|
1888
|
-
Redirected to http://localhost:3000/projects/2/edit
|
1889
|
-
Completed 302 Found in 55ms (ActiveRecord: 3.7ms)
|
1890
|
-
|
1891
|
-
|
1892
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:11:19 +0300
|
1893
|
-
Processing by ProjectsController#edit as HTML
|
1894
|
-
Parameters: {"id"=>"2"}
|
1895
|
-
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1896
|
-
[1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1897
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1898
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1899
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1900
|
-
Rendered projects/_form_table.html.erb (9.7ms)
|
1901
|
-
Rendered projects/edit.html.erb within layouts/application (10.3ms)
|
1902
|
-
Completed 200 OK in 14ms (Views: 12.5ms | ActiveRecord: 0.7ms)
|
1903
|
-
|
1904
|
-
|
1905
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:11:19 +0300
|
1906
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1907
|
-
|
1908
|
-
|
1909
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:11:19 +0300
|
1910
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1911
|
-
|
1912
|
-
|
1913
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:11:19 +0300
|
1914
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1915
|
-
|
1916
|
-
|
1917
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:11:22 +0300
|
1918
|
-
Processing by ProjectsController#edit as HTML
|
1919
|
-
Parameters: {"id"=>"2"}
|
1920
|
-
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1921
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1922
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1923
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1924
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1925
|
-
Rendered projects/_form_table.html.erb (9.5ms)
|
1926
|
-
Rendered projects/edit.html.erb within layouts/application (10.1ms)
|
1927
|
-
Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.7ms)
|
1928
|
-
|
1929
|
-
|
1930
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:11:23 +0300
|
1931
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1932
|
-
|
1933
|
-
|
1934
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:11:23 +0300
|
1935
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1936
|
-
|
1937
|
-
|
1938
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:11:23 +0300
|
1939
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1940
|
-
|
1941
|
-
|
1942
|
-
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 22:11:25 +0300
|
1943
|
-
Processing by ProjectsController#update as HTML
|
1944
|
-
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"name"=>"asdfasdf", "_destroy"=>"false", "id"=>"1"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
1945
|
-
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1946
|
-
[1m[35m (0.1ms)[0m begin transaction
|
1947
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)[0m
|
1948
|
-
[1m[35mMilestone Load (0.2ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1)
|
1949
|
-
[1m[36m (0.4ms)[0m [1mUPDATE "milestones" SET "name" = 'asdfasdf' WHERE "milestones"."id" = 1[0m
|
1950
|
-
[1m[35m (3.0ms)[0m commit transaction
|
1951
|
-
Redirected to http://localhost:3000/projects/2/edit
|
1952
|
-
Completed 302 Found in 11ms (ActiveRecord: 4.0ms)
|
1953
|
-
|
1954
|
-
|
1955
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:11:26 +0300
|
1956
|
-
Processing by ProjectsController#edit as HTML
|
1957
|
-
Parameters: {"id"=>"2"}
|
1958
|
-
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1959
|
-
[1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1960
|
-
[1m[36mMilestone Load (0.3ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1961
|
-
[1m[35mMilestone Load (0.3ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1962
|
-
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1963
|
-
Rendered projects/_form_table.html.erb (14.0ms)
|
1964
|
-
Rendered projects/edit.html.erb within layouts/application (15.0ms)
|
1965
|
-
Completed 200 OK in 20ms (Views: 17.5ms | ActiveRecord: 1.2ms)
|
1966
|
-
|
1967
|
-
|
1968
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:11:27 +0300
|
1969
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1970
|
-
|
1971
|
-
|
1972
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:11:27 +0300
|
1973
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1974
|
-
|
1975
|
-
|
1976
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:11:27 +0300
|
1977
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1978
|
-
|
1979
|
-
|
1980
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:11:42 +0300
|
1981
|
-
Processing by ProjectsController#edit as HTML
|
1982
|
-
Parameters: {"id"=>"2"}
|
1983
|
-
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1984
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1985
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1986
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1987
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1988
|
-
Rendered projects/_form_table.html.erb (9.6ms)
|
1989
|
-
Rendered projects/edit.html.erb within layouts/application (10.2ms)
|
1990
|
-
Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.7ms)
|
1991
|
-
|
1992
|
-
|
1993
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:11:42 +0300
|
1994
|
-
Compiled jquery_nested_form.js (0ms) (pid 73504)
|
1995
|
-
Served asset /jquery_nested_form.js - 200 OK (92ms)
|
1996
|
-
|
1997
|
-
|
1998
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:11:42 +0300
|
1999
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
2000
|
-
|
2001
|
-
|
2002
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:11:42 +0300
|
2003
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
2004
|
-
|
2005
|
-
|
2006
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:11:56 +0300
|
2007
|
-
Processing by ProjectsController#edit as HTML
|
2008
|
-
Parameters: {"id"=>"2"}
|
2009
|
-
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
2010
|
-
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
2011
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
2012
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
2013
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
2014
|
-
Rendered projects/_form_table.html.erb (10.3ms)
|
2015
|
-
Rendered projects/edit.html.erb within layouts/application (11.1ms)
|
2016
|
-
Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 0.7ms)
|
2017
|
-
|
2018
|
-
|
2019
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:11:56 +0300
|
2020
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
2021
|
-
|
2022
|
-
|
2023
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:11:56 +0300
|
2024
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
2025
|
-
|
2026
|
-
|
2027
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:11:56 +0300
|
2028
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
2029
|
-
|
2030
|
-
|
2031
|
-
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 22:12:01 +0300
|
2032
|
-
Processing by ProjectsController#update as HTML
|
2033
|
-
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"id"=>"1", "name"=>"asdfasdf", "_destroy"=>"false"}, "1350587518216"=>{"id"=>"", "name"=>"asdfasdf", "_destroy"=>"false"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
2034
|
-
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
2035
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2036
|
-
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)
|
2037
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1, 0)[0m
|
2038
|
-
[1m[35mSQL (46.3ms)[0m INSERT INTO "milestones" ("name", "task_id") VALUES (?, ?) [["name", "asdfasdf"], ["task_id", 2]]
|
2039
|
-
[1m[36m (2.9ms)[0m [1mcommit transaction[0m
|
2040
|
-
Redirected to http://localhost:3000/projects/2/edit
|
2041
|
-
Completed 302 Found in 57ms (ActiveRecord: 49.6ms)
|
2042
|
-
|
2043
|
-
|
2044
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:12:01 +0300
|
2045
|
-
Processing by ProjectsController#edit as HTML
|
2046
|
-
Parameters: {"id"=>"2"}
|
2047
|
-
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
2048
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
2049
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
2050
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
2051
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
2052
|
-
Rendered projects/_form_table.html.erb (9.1ms)
|
2053
|
-
Rendered projects/edit.html.erb within layouts/application (9.7ms)
|
2054
|
-
Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.6ms)
|
2055
|
-
|
2056
|
-
|
2057
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:12:01 +0300
|
2058
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
2059
|
-
|
2060
|
-
|
2061
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:12:01 +0300
|
2062
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
2063
|
-
|
2064
|
-
|
2065
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:12:01 +0300
|
2066
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
2067
|
-
|
2068
|
-
|
2069
|
-
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 22:12:06 +0300
|
2070
|
-
Processing by ProjectsController#update as HTML
|
2071
|
-
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"id"=>"1", "name"=>"asdfasdf", "_destroy"=>"false"}, "1"=>{"id"=>"2", "name"=>"asdfasdf", "_destroy"=>"false"}, "1350587522833"=>{"id"=>"", "name"=>"123123", "_destroy"=>"false"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
2072
|
-
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
2073
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2074
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)[0m
|
2075
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1, 2, 0)
|
2076
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "milestones" ("name", "task_id") VALUES (?, ?)[0m [["name", "123123"], ["task_id", 2]]
|
2077
|
-
[1m[35m (3.5ms)[0m commit transaction
|
2078
|
-
Redirected to http://localhost:3000/projects/2/edit
|
2079
|
-
Completed 302 Found in 32ms (ActiveRecord: 4.2ms)
|
2080
|
-
|
2081
|
-
|
2082
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:12:06 +0300
|
2083
|
-
Processing by ProjectsController#edit as HTML
|
2084
|
-
Parameters: {"id"=>"2"}
|
2085
|
-
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
2086
|
-
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
2087
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
2088
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
2089
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
2090
|
-
Rendered projects/_form_table.html.erb (9.9ms)
|
2091
|
-
Rendered projects/edit.html.erb within layouts/application (10.5ms)
|
2092
|
-
Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.6ms)
|
2093
|
-
|
2094
|
-
|
2095
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:12:06 +0300
|
2096
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
2097
|
-
|
2098
|
-
|
2099
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:12:06 +0300
|
2100
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
2101
|
-
|
2102
|
-
|
2103
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:12:06 +0300
|
2104
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
2105
|
-
|
2106
|
-
|
2107
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:12:11 +0300
|
2108
|
-
Processing by ProjectsController#edit as HTML
|
2109
|
-
Parameters: {"id"=>"2"}
|
2110
|
-
[1m[35mProject Load (0.2ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
2111
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
2112
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
2113
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
2114
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
2115
|
-
Rendered projects/_form_table.html.erb (11.8ms)
|
2116
|
-
Rendered projects/edit.html.erb within layouts/application (12.7ms)
|
2117
|
-
Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.7ms)
|
2118
|
-
|
2119
|
-
|
2120
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:12:11 +0300
|
2121
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
2122
|
-
|
2123
|
-
|
2124
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:12:11 +0300
|
2125
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
2126
|
-
|
2127
|
-
|
2128
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:12:11 +0300
|
2129
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
2130
|
-
|
2131
|
-
|
2132
|
-
Started GET "/" for 127.0.0.1 at 2012-10-18 22:16:20 +0300
|
2133
|
-
|
2134
|
-
ActionController::RoutingError (No route matches [GET] "/"):
|
2135
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
2136
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
2137
|
-
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
2138
|
-
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
2139
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
2140
|
-
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
2141
|
-
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
2142
|
-
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
2143
|
-
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
2144
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
2145
|
-
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
2146
|
-
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
2147
|
-
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
2148
|
-
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
2149
|
-
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
2150
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
2151
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
2152
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
2153
|
-
|
2154
|
-
|
2155
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
|
2156
|
-
|
2157
|
-
|
2158
|
-
Started GET "/" for 127.0.0.1 at 2012-10-18 22:25:52 +0300
|
2159
|
-
|
2160
|
-
ActionController::RoutingError (No route matches [GET] "/"):
|
2161
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
2162
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
2163
|
-
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
2164
|
-
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
2165
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
2166
|
-
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
2167
|
-
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
2168
|
-
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
2169
|
-
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
2170
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
2171
|
-
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
2172
|
-
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
2173
|
-
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
2174
|
-
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
2175
|
-
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
2176
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
2177
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
2178
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
2179
|
-
|
2180
|
-
|
2181
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
|
2182
|
-
|
2183
|
-
|
2184
|
-
Started GET "/projects/2" for 127.0.0.1 at 2012-10-18 22:25:54 +0300
|
2185
|
-
|
2186
|
-
AbstractController::ActionNotFound (The action 'show' could not be found for ProjectsController):
|
2187
|
-
actionpack (3.2.8) lib/abstract_controller/base.rb:116:in `process'
|
2188
|
-
actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
|
2189
|
-
actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
|
2190
|
-
actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
2191
|
-
actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
|
2192
|
-
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
2193
|
-
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
2194
|
-
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
2195
|
-
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
2196
|
-
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
2197
|
-
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
2198
|
-
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
|
2199
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
2200
|
-
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
2201
|
-
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
2202
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
|
2203
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
2204
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
2205
|
-
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
2206
|
-
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
2207
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
|
2208
|
-
activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
|
2209
|
-
activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
|
2210
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
2211
|
-
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__4190427419334200419__call__1803629933879325397__callbacks'
|
2212
|
-
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
2213
|
-
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
2214
|
-
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
2215
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
2216
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
2217
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
2218
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
2219
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
2220
|
-
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
2221
|
-
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
2222
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
2223
|
-
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
2224
|
-
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
2225
|
-
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
2226
|
-
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
2227
|
-
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
2228
|
-
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
2229
|
-
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
2230
|
-
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
2231
|
-
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
2232
|
-
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
2233
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
2234
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
2235
|
-
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
2236
|
-
|
2237
|
-
|
2238
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.5ms)
|
2239
|
-
|
2240
|
-
|
2241
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:25:56 +0300
|
2242
|
-
Processing by ProjectsController#edit as HTML
|
2243
|
-
Parameters: {"id"=>"2"}
|
2244
|
-
[1m[36mProject Load (13.7ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
2245
|
-
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
2246
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
2247
|
-
[1m[35mMilestone Load (0.2ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
2248
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
2249
|
-
Rendered projects/_form_table.html.erb (32.8ms)
|
2250
|
-
Rendered projects/edit.html.erb within layouts/application (47.5ms)
|
2251
|
-
Completed 200 OK in 88ms (Views: 68.5ms | ActiveRecord: 14.8ms)
|
2252
|
-
|
2253
|
-
|
2254
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:25:56 +0300
|
2255
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
2256
|
-
|
2257
|
-
|
2258
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:25:56 +0300
|
2259
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
2260
|
-
|
2261
|
-
|
2262
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:25:56 +0300
|
2263
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
2264
|
-
|
2265
|
-
|
2266
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:25:58 +0300
|
2267
|
-
Processing by ProjectsController#edit as HTML
|
2268
|
-
Parameters: {"id"=>"2"}
|
2269
|
-
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
2270
|
-
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
2271
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
2272
|
-
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
2273
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
2274
|
-
Rendered projects/_form_table.html.erb (9.5ms)
|
2275
|
-
Rendered projects/edit.html.erb within layouts/application (10.1ms)
|
2276
|
-
Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.7ms)
|
2277
|
-
|
2278
|
-
|
2279
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:25:58 +0300
|
2280
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
2281
|
-
|
2282
|
-
|
2283
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:25:58 +0300
|
2284
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
2285
|
-
|
2286
|
-
|
2287
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:25:58 +0300
|
2288
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
2289
|
-
|
2290
|
-
|
2291
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:26:16 +0300
|
2292
|
-
Processing by ProjectsController#edit as HTML
|
2293
|
-
Parameters: {"id"=>"2"}
|
2294
|
-
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
2295
|
-
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
2296
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
2297
|
-
[1m[35mMilestone Load (0.2ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
2298
|
-
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
2299
|
-
Rendered projects/_form_table.html.erb (11.0ms)
|
2300
|
-
Rendered projects/edit.html.erb within layouts/application (11.6ms)
|
2301
|
-
Completed 200 OK in 15ms (Views: 13.4ms | ActiveRecord: 0.8ms)
|
2302
|
-
|
2303
|
-
|
2304
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:26:17 +0300
|
2305
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
2306
|
-
|
2307
|
-
|
2308
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:26:17 +0300
|
2309
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
2310
|
-
|
2311
|
-
|
2312
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:26:17 +0300
|
2313
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
2314
|
-
|
2315
|
-
|
2316
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:26:32 +0300
|
2317
|
-
Processing by ProjectsController#edit as HTML
|
2318
|
-
Parameters: {"id"=>"2"}
|
2319
|
-
[1m[35mProject Load (0.2ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
2320
|
-
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
2321
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
2322
|
-
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
2323
|
-
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
2324
|
-
Rendered projects/_form_table.html.erb (65.5ms)
|
2325
|
-
Rendered projects/edit.html.erb within layouts/application (66.2ms)
|
2326
|
-
Completed 200 OK in 74ms (Views: 68.5ms | ActiveRecord: 1.3ms)
|
2327
|
-
|
2328
|
-
|
2329
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:26:32 +0300
|
2330
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
2331
|
-
|
2332
|
-
|
2333
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:26:32 +0300
|
2334
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
2335
|
-
|
2336
|
-
|
2337
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:26:32 +0300
|
2338
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
2339
|
-
|
2340
|
-
|
2341
|
-
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:26:34 +0300
|
2342
|
-
Processing by ProjectsController#edit as HTML
|
2343
|
-
Parameters: {"id"=>"2"}
|
2344
|
-
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
2345
|
-
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
2346
|
-
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
2347
|
-
[1m[35mMilestone Load (0.2ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
2348
|
-
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
2349
|
-
Rendered projects/_form_table.html.erb (10.2ms)
|
2350
|
-
Rendered projects/edit.html.erb within layouts/application (10.9ms)
|
2351
|
-
Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.7ms)
|
2352
|
-
|
2353
|
-
|
2354
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:26:35 +0300
|
2355
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
2356
|
-
|
2357
|
-
|
2358
|
-
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:26:35 +0300
|
2359
|
-
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
2360
|
-
|
2361
|
-
|
2362
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:26:35 +0300
|
2363
|
-
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|