nested_form 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +12 -0
- data/README.md +165 -0
- data/Rakefile +7 -0
- data/lib/nested_form/builder_mixin.rb +13 -1
- data/spec/dummy/app/assets/javascripts/jquery_events_test.js +19 -0
- data/spec/dummy/app/assets/javascripts/jquery_nested_form.js +42 -10
- data/spec/dummy/app/assets/javascripts/prototype_events_test.js +20 -0
- data/spec/dummy/app/assets/javascripts/prototype_nested_form.js +37 -32
- data/spec/dummy/app/models/project.rb +2 -0
- data/spec/dummy/app/models/project_task.rb +3 -0
- data/spec/dummy/app/views/layouts/application.html.erb +8 -0
- data/spec/dummy/app/views/projects/new.html.erb +0 -6
- data/spec/dummy/app/views/projects/without_intermediate_inputs.html.erb +11 -0
- data/spec/dummy/config/routes.rb +3 -1
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20120819164528_add_association_with_class_name.rb +12 -0
- data/spec/dummy/db/schema.rb +6 -1
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +91 -0
- data/spec/dummy/log/test.log +710 -25
- 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/dummy/tmp/capybara/capybara-201208212241496415482929.html +31 -0
- data/spec/events_spec.rb +60 -0
- data/spec/form_spec.rb +9 -0
- data/spec/nested_form/builder_spec.rb +67 -19
- data/vendor/assets/javascripts/jquery_nested_form.js +42 -10
- data/vendor/assets/javascripts/prototype_nested_form.js +37 -32
- metadata +102 -72
- data/README.rdoc +0 -101
@@ -2,10 +2,18 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<title>Dummy</title>
|
5
|
+
|
6
|
+
<% if params[:type] == 'prototype' %>
|
7
|
+
<%= javascript_include_tag 'prototype', 'prototype_nested_form', 'prototype_events_test' %>
|
8
|
+
<% else %>
|
9
|
+
<%= javascript_include_tag 'jquery', 'jquery_nested_form', 'jquery_events_test' %>
|
10
|
+
<% end %>
|
5
11
|
</head>
|
6
12
|
<body>
|
7
13
|
|
8
14
|
<%= yield %>
|
9
15
|
|
16
|
+
<div id="console"></div>
|
17
|
+
|
10
18
|
</body>
|
11
19
|
</html>
|
@@ -1,9 +1,3 @@
|
|
1
|
-
<% if params[:type] == 'prototype' %>
|
2
|
-
<%= javascript_include_tag 'prototype', 'prototype_nested_form' %>
|
3
|
-
<% else %>
|
4
|
-
<%= javascript_include_tag 'jquery', 'jquery_nested_form' %>
|
5
|
-
<% end %>
|
6
|
-
|
7
1
|
<%= nested_form_for @project do |f| -%>
|
8
2
|
<%= f.text_field :name %>
|
9
3
|
<%= f.fields_for :tasks do |tf| -%>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<%= nested_form_for Project.new do |f| -%>
|
2
|
+
<%= f.fields_for :tasks do |tf| -%>
|
3
|
+
<%= tf.fields_for :milestones do |mf| %>
|
4
|
+
<%= mf.text_field :name %>
|
5
|
+
<%= mf.link_to_remove 'Remove milestone' %>
|
6
|
+
<% end %>
|
7
|
+
<%= tf.link_to_add 'Add new milestone', :milestones %>
|
8
|
+
<%= tf.link_to_remove 'Remove' %>
|
9
|
+
<% end -%>
|
10
|
+
<%= f.link_to_add 'Add new task', :tasks %>
|
11
|
+
<% end -%>
|
data/spec/dummy/config/routes.rb
CHANGED
Binary file
|
data/spec/dummy/db/schema.rb
CHANGED
@@ -11,13 +11,18 @@
|
|
11
11
|
#
|
12
12
|
# It's strongly recommended to check this file into your version control system.
|
13
13
|
|
14
|
-
ActiveRecord::Schema.define(:version =>
|
14
|
+
ActiveRecord::Schema.define(:version => 20120819164528) do
|
15
15
|
|
16
16
|
create_table "milestones", :force => true do |t|
|
17
17
|
t.integer "task_id"
|
18
18
|
t.string "name"
|
19
19
|
end
|
20
20
|
|
21
|
+
create_table "project_tasks", :force => true do |t|
|
22
|
+
t.integer "project_id"
|
23
|
+
t.string "name"
|
24
|
+
end
|
25
|
+
|
21
26
|
create_table "projects", :force => true do |t|
|
22
27
|
t.string "name"
|
23
28
|
end
|
data/spec/dummy/db/test.sqlite3
CHANGED
Binary file
|
@@ -0,0 +1,91 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
4
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
5
|
+
[1m[35m (0.9ms)[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.4ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) [0m
|
10
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "project_id" integer, "name" varchar(255))
|
11
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "milestones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "name" varchar(255)) [0m
|
12
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20110710143903')
|
13
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
14
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
15
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
16
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("milestones")
|
17
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("projects")[0m
|
18
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("tasks")
|
19
|
+
Connecting to database specified by database.yml
|
20
|
+
|
21
|
+
|
22
|
+
Started GET "/" for 127.0.0.1 at 2012-08-21 22:22:36 +0300
|
23
|
+
|
24
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
25
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
26
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
27
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
28
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
29
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
30
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
31
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
32
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
33
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
34
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
35
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
36
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
37
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
38
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
39
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
40
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
41
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
42
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
43
|
+
|
44
|
+
|
45
|
+
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 (1.9ms)
|
46
|
+
|
47
|
+
|
48
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:22:48 +0300
|
49
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
50
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (46.8ms)
|
51
|
+
Completed 200 OK in 50ms (Views: 49.3ms | ActiveRecord: 0.5ms)
|
52
|
+
|
53
|
+
|
54
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-08-21 22:22:48 +0300
|
55
|
+
Compiled jquery.js (3ms) (pid 22470)
|
56
|
+
Served asset /jquery.js - 200 OK (20ms)
|
57
|
+
|
58
|
+
|
59
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-08-21 22:22:48 +0300
|
60
|
+
Compiled jquery_nested_form.js (0ms) (pid 22470)
|
61
|
+
Served asset /jquery_nested_form.js - 200 OK (6ms)
|
62
|
+
|
63
|
+
|
64
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-08-21 22:22:48 +0300
|
65
|
+
Compiled jquery_events_test.js (0ms) (pid 22470)
|
66
|
+
Served asset /jquery_events_test.js - 200 OK (32ms)
|
67
|
+
Connecting to database specified by database.yml
|
68
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
69
|
+
Migrating to InitialTables (20110710143903)
|
70
|
+
Migrating to AddAssociationWithClassName (20120819164528)
|
71
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
72
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
73
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "project_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "project_id" integer, "name" varchar(255))
|
74
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120819164528')[0m
|
75
|
+
[1m[35m (2.7ms)[0m commit transaction
|
76
|
+
[1m[36m (0.3ms)[0m [1mselect sqlite_version(*)[0m
|
77
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
78
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("milestones")[0m
|
79
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("project_tasks")
|
80
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("projects")[0m
|
81
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("tasks")
|
82
|
+
Connecting to database specified by database.yml
|
83
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
84
|
+
Migrating to InitialTables (20110710143903)
|
85
|
+
Migrating to AddAssociationWithClassName (20120819164528)
|
86
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
87
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
88
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("milestones")
|
89
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("project_tasks")[0m
|
90
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("projects")
|
91
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("tasks")[0m
|
data/spec/dummy/log/test.log
CHANGED
@@ -1,23 +1,28 @@
|
|
1
1
|
Connecting to database specified by database.yml
|
2
2
|
|
3
3
|
|
4
|
-
Started GET "/projects/
|
5
|
-
|
6
|
-
|
4
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:15:12 +0300
|
5
|
+
Connecting to database specified by database.yml
|
6
|
+
|
7
|
+
|
8
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:15:47 +0300
|
9
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
10
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (6.2ms)
|
11
|
+
Completed 500 Internal Server Error in 16ms
|
7
12
|
Connecting to database specified by database.yml
|
8
13
|
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
9
|
-
[1m[35m (1.
|
14
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
10
15
|
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
11
|
-
[1m[35m (
|
16
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
12
17
|
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
13
18
|
Migrating to InitialTables (20110710143903)
|
14
19
|
[1m[35m (0.0ms)[0m begin transaction
|
15
|
-
[1m[36m (0.
|
20
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) [0m
|
16
21
|
[1m[35m (0.1ms)[0m CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "project_id" integer, "name" varchar(255))
|
17
22
|
[1m[36m (0.1ms)[0m [1mCREATE TABLE "milestones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "name" varchar(255)) [0m
|
18
23
|
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20110710143903')
|
19
|
-
[1m[36m (
|
20
|
-
[1m[35m (0.
|
24
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
25
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
21
26
|
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
22
27
|
[1m[35m (0.0ms)[0m PRAGMA index_list("milestones")
|
23
28
|
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("projects")[0m
|
@@ -25,34 +30,714 @@ Migrating to InitialTables (20110710143903)
|
|
25
30
|
Connecting to database specified by database.yml
|
26
31
|
|
27
32
|
|
28
|
-
Started GET "/projects/
|
33
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:16:09 +0300
|
34
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
35
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (11.7ms)
|
36
|
+
Completed 500 Internal Server Error in 19ms
|
37
|
+
Connecting to database specified by database.yml
|
38
|
+
|
39
|
+
|
40
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:16:34 +0300
|
41
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
42
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (57.5ms)
|
43
|
+
Completed 200 OK in 66ms (Views: 65.3ms | ActiveRecord: 0.4ms)
|
44
|
+
Connecting to database specified by database.yml
|
45
|
+
|
46
|
+
|
47
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:17:02 +0300
|
48
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
49
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (6.3ms)
|
50
|
+
Completed 500 Internal Server Error in 15ms
|
51
|
+
Connecting to database specified by database.yml
|
52
|
+
|
53
|
+
|
54
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:17:11 +0300
|
55
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
56
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (51.8ms)
|
57
|
+
Completed 200 OK in 61ms (Views: 60.4ms | ActiveRecord: 0.4ms)
|
58
|
+
Connecting to database specified by database.yml
|
59
|
+
|
60
|
+
|
61
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:17:43 +0300
|
62
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
63
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (37.4ms)
|
64
|
+
Completed 200 OK in 79ms (Views: 77.8ms | ActiveRecord: 0.6ms)
|
65
|
+
|
66
|
+
|
67
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-08-21 22:17:44 +0300
|
68
|
+
Compiled jquery.js (27ms) (pid 22082)
|
69
|
+
Served asset /jquery.js - 200 OK (45ms)
|
70
|
+
|
71
|
+
|
72
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-08-21 22:17:44 +0300
|
73
|
+
Compiled jquery_nested_form.js (0ms) (pid 22082)
|
74
|
+
Served asset /jquery_nested_form.js - 200 OK (10ms)
|
75
|
+
|
76
|
+
|
77
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-08-21 22:17:44 +0300
|
78
|
+
Compiled jquery_events_test.js (0ms) (pid 22082)
|
79
|
+
Served asset /jquery_events_test.js - 200 OK (12ms)
|
80
|
+
Connecting to database specified by database.yml
|
81
|
+
|
82
|
+
|
83
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:19:13 +0300
|
84
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
85
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (36.5ms)
|
86
|
+
Completed 200 OK in 49ms (Views: 47.4ms | ActiveRecord: 0.6ms)
|
87
|
+
|
88
|
+
|
89
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-08-21 22:19:13 +0300
|
90
|
+
Served asset /jquery.js - 200 OK (7ms)
|
91
|
+
|
92
|
+
|
93
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-08-21 22:19:13 +0300
|
94
|
+
Served asset /jquery_events_test.js - 200 OK (2ms)
|
95
|
+
|
96
|
+
|
97
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-08-21 22:19:13 +0300
|
98
|
+
Compiled jquery_nested_form.js (0ms) (pid 22313)
|
99
|
+
Served asset /jquery_nested_form.js - 200 OK (8ms)
|
100
|
+
Connecting to database specified by database.yml
|
101
|
+
|
102
|
+
|
103
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:20:18 +0300
|
104
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
105
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (44.2ms)
|
106
|
+
Completed 200 OK in 57ms (Views: 56.2ms | ActiveRecord: 0.6ms)
|
107
|
+
|
108
|
+
|
109
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-08-21 22:20:18 +0300
|
110
|
+
Served asset /jquery.js - 200 OK (7ms)
|
111
|
+
|
112
|
+
|
113
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-08-21 22:20:18 +0300
|
114
|
+
Compiled jquery_nested_form.js (0ms) (pid 22366)
|
115
|
+
Served asset /jquery_nested_form.js - 200 OK (8ms)
|
116
|
+
|
117
|
+
|
118
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-08-21 22:20:18 +0300
|
119
|
+
Served asset /jquery_events_test.js - 200 OK (2ms)
|
120
|
+
Connecting to database specified by database.yml
|
121
|
+
|
122
|
+
|
123
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:20:27 +0300
|
124
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
125
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (40.6ms)
|
126
|
+
Completed 200 OK in 53ms (Views: 51.7ms | ActiveRecord: 0.7ms)
|
127
|
+
|
128
|
+
|
129
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-08-21 22:20:27 +0300
|
130
|
+
Served asset /jquery.js - 200 OK (10ms)
|
131
|
+
|
132
|
+
|
133
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-08-21 22:20:27 +0300
|
134
|
+
Served asset /jquery_nested_form.js - 200 OK (2ms)
|
135
|
+
|
136
|
+
|
137
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-08-21 22:20:27 +0300
|
138
|
+
Served asset /jquery_events_test.js - 200 OK (2ms)
|
139
|
+
Connecting to database specified by database.yml
|
140
|
+
|
141
|
+
|
142
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:39:59 +0300
|
143
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
144
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (38.7ms)
|
145
|
+
Completed 200 OK in 51ms (Views: 49.4ms | ActiveRecord: 0.6ms)
|
146
|
+
|
147
|
+
|
148
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-08-21 22:39:59 +0300
|
149
|
+
Compiled jquery.js (2ms) (pid 24503)
|
150
|
+
Served asset /jquery.js - 200 OK (14ms)
|
151
|
+
|
152
|
+
|
153
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-08-21 22:39:59 +0300
|
154
|
+
Compiled jquery_nested_form.js (0ms) (pid 24503)
|
155
|
+
Served asset /jquery_nested_form.js - 200 OK (6ms)
|
156
|
+
|
157
|
+
|
158
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-08-21 22:39:59 +0300
|
159
|
+
Compiled jquery_events_test.js (0ms) (pid 24503)
|
160
|
+
Served asset /jquery_events_test.js - 200 OK (6ms)
|
161
|
+
Connecting to database specified by database.yml
|
162
|
+
|
163
|
+
|
164
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:40:17 +0300
|
165
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
166
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (38.9ms)
|
167
|
+
Completed 200 OK in 52ms (Views: 50.5ms | ActiveRecord: 0.7ms)
|
168
|
+
|
169
|
+
|
170
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-08-21 22:40:17 +0300
|
171
|
+
Served asset /jquery.js - 200 OK (8ms)
|
172
|
+
|
173
|
+
|
174
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-08-21 22:40:17 +0300
|
175
|
+
Served asset /jquery_events_test.js - 200 OK (2ms)
|
176
|
+
|
177
|
+
|
178
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-08-21 22:40:17 +0300
|
179
|
+
Served asset /jquery_nested_form.js - 200 OK (2ms)
|
180
|
+
Connecting to database specified by database.yml
|
181
|
+
|
182
|
+
|
183
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:41:17 +0300
|
184
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
185
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (37.4ms)
|
186
|
+
Completed 200 OK in 51ms (Views: 49.8ms | ActiveRecord: 0.8ms)
|
187
|
+
|
188
|
+
|
189
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-08-21 22:41:17 +0300
|
190
|
+
Served asset /jquery.js - 200 OK (7ms)
|
191
|
+
|
192
|
+
|
193
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-08-21 22:41:17 +0300
|
194
|
+
Compiled jquery_nested_form.js (0ms) (pid 24645)
|
195
|
+
Served asset /jquery_nested_form.js - 200 OK (8ms)
|
196
|
+
|
197
|
+
|
198
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-08-21 22:41:17 +0300
|
199
|
+
Served asset /jquery_events_test.js - 200 OK (2ms)
|
200
|
+
Connecting to database specified by database.yml
|
201
|
+
|
202
|
+
|
203
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:41:49 +0300
|
204
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
205
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (38.2ms)
|
206
|
+
Completed 200 OK in 51ms (Views: 50.1ms | ActiveRecord: 0.6ms)
|
207
|
+
|
208
|
+
|
209
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-08-21 22:41:49 +0300
|
210
|
+
Served asset /jquery.js - 200 OK (8ms)
|
211
|
+
|
212
|
+
|
213
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-08-21 22:41:49 +0300
|
214
|
+
Compiled jquery_nested_form.js (0ms) (pid 24686)
|
215
|
+
Served asset /jquery_nested_form.js - 200 OK (8ms)
|
216
|
+
|
217
|
+
|
218
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-08-21 22:41:49 +0300
|
219
|
+
Served asset /jquery_events_test.js - 200 OK (1ms)
|
220
|
+
Connecting to database specified by database.yml
|
221
|
+
|
222
|
+
|
223
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:42:08 +0300
|
224
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
225
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (38.2ms)
|
226
|
+
Completed 200 OK in 49ms (Views: 48.3ms | ActiveRecord: 0.7ms)
|
227
|
+
|
228
|
+
|
229
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-08-21 22:42:08 +0300
|
230
|
+
Served asset /jquery.js - 200 OK (8ms)
|
231
|
+
|
232
|
+
|
233
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-08-21 22:42:08 +0300
|
234
|
+
Served asset /jquery_nested_form.js - 200 OK (2ms)
|
235
|
+
|
236
|
+
|
237
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-08-21 22:42:08 +0300
|
238
|
+
Served asset /jquery_events_test.js - 200 OK (2ms)
|
239
|
+
Connecting to database specified by database.yml
|
240
|
+
|
241
|
+
|
242
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:42:32 +0300
|
243
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
244
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (39.7ms)
|
245
|
+
Completed 200 OK in 53ms (Views: 51.9ms | ActiveRecord: 0.8ms)
|
246
|
+
|
247
|
+
|
248
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-08-21 22:42:32 +0300
|
249
|
+
Served asset /jquery.js - 200 OK (7ms)
|
250
|
+
|
251
|
+
|
252
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-08-21 22:42:32 +0300
|
253
|
+
Served asset /jquery_nested_form.js - 200 OK (2ms)
|
254
|
+
|
255
|
+
|
256
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-08-21 22:42:32 +0300
|
257
|
+
Served asset /jquery_events_test.js - 200 OK (2ms)
|
258
|
+
Connecting to database specified by database.yml
|
259
|
+
|
260
|
+
|
261
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:42:48 +0300
|
262
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
263
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (37.1ms)
|
264
|
+
Completed 200 OK in 49ms (Views: 47.7ms | ActiveRecord: 0.7ms)
|
265
|
+
|
266
|
+
|
267
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-08-21 22:42:48 +0300
|
268
|
+
Served asset /jquery.js - 200 OK (7ms)
|
269
|
+
|
270
|
+
|
271
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-08-21 22:42:48 +0300
|
272
|
+
Served asset /jquery_nested_form.js - 200 OK (2ms)
|
273
|
+
|
274
|
+
|
275
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-08-21 22:42:48 +0300
|
276
|
+
Served asset /jquery_events_test.js - 200 OK (2ms)
|
277
|
+
Connecting to database specified by database.yml
|
278
|
+
|
279
|
+
|
280
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:43:04 +0300
|
281
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
282
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (42.1ms)
|
283
|
+
Completed 200 OK in 54ms (Views: 52.9ms | ActiveRecord: 0.8ms)
|
284
|
+
|
285
|
+
|
286
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-08-21 22:43:05 +0300
|
287
|
+
Served asset /jquery.js - 200 OK (7ms)
|
288
|
+
|
289
|
+
|
290
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-08-21 22:43:05 +0300
|
291
|
+
Served asset /jquery_nested_form.js - 200 OK (2ms)
|
292
|
+
|
293
|
+
|
294
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-08-21 22:43:05 +0300
|
295
|
+
Served asset /jquery_events_test.js - 200 OK (2ms)
|
296
|
+
Connecting to database specified by database.yml
|
297
|
+
|
298
|
+
|
299
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:45:14 +0300
|
300
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
301
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (37.1ms)
|
302
|
+
Completed 200 OK in 50ms (Views: 49.1ms | ActiveRecord: 0.7ms)
|
303
|
+
|
304
|
+
|
305
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-08-21 22:45:14 +0300
|
306
|
+
Served asset /jquery.js - 200 OK (7ms)
|
307
|
+
|
308
|
+
|
309
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-08-21 22:45:14 +0300
|
310
|
+
Served asset /jquery_nested_form.js - 200 OK (2ms)
|
311
|
+
|
312
|
+
|
313
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-08-21 22:45:14 +0300
|
314
|
+
Served asset /jquery_events_test.js - 200 OK (3ms)
|
315
|
+
Connecting to database specified by database.yml
|
316
|
+
|
317
|
+
|
318
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:45:29 +0300
|
319
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
320
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (82.9ms)
|
321
|
+
Completed 200 OK in 151ms (Views: 148.8ms | ActiveRecord: 1.1ms)
|
322
|
+
|
323
|
+
|
324
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-08-21 22:45:29 +0300
|
325
|
+
Served asset /jquery_nested_form.js - 200 OK (5ms)
|
326
|
+
|
327
|
+
|
328
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-08-21 22:45:29 +0300
|
329
|
+
Served asset /jquery_events_test.js - 200 OK (3ms)
|
330
|
+
|
331
|
+
|
332
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-08-21 22:45:29 +0300
|
333
|
+
Served asset /jquery.js - 200 OK (30ms)
|
334
|
+
Connecting to database specified by database.yml
|
335
|
+
|
336
|
+
|
337
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:45:57 +0300
|
338
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
339
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (40.6ms)
|
340
|
+
Completed 200 OK in 54ms (Views: 52.9ms | ActiveRecord: 0.6ms)
|
341
|
+
|
342
|
+
|
343
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-08-21 22:45:57 +0300
|
344
|
+
Served asset /jquery.js - 200 OK (7ms)
|
345
|
+
|
346
|
+
|
347
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-08-21 22:45:57 +0300
|
348
|
+
Compiled jquery_nested_form.js (0ms) (pid 24986)
|
349
|
+
Served asset /jquery_nested_form.js - 200 OK (7ms)
|
350
|
+
|
351
|
+
|
352
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-08-21 22:45:57 +0300
|
353
|
+
Served asset /jquery_events_test.js - 200 OK (2ms)
|
354
|
+
Connecting to database specified by database.yml
|
355
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
356
|
+
Migrating to InitialTables (20110710143903)
|
357
|
+
Migrating to AddAssociationWithClassName (20120819164528)
|
358
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
359
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
360
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "project_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "project_id" integer, "name" varchar(255))
|
361
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120819164528')[0m
|
362
|
+
[1m[35m (0.8ms)[0m commit transaction
|
363
|
+
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
364
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
365
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("milestones")[0m
|
366
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("project_tasks")
|
367
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("projects")[0m
|
368
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("tasks")
|
369
|
+
Connecting to database specified by database.yml
|
370
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
371
|
+
Migrating to InitialTables (20110710143903)
|
372
|
+
Migrating to AddAssociationWithClassName (20120819164528)
|
373
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
374
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
375
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("milestones")
|
376
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("project_tasks")[0m
|
377
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("projects")
|
378
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("tasks")[0m
|
379
|
+
|
380
|
+
|
381
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-08-21 23:31:13 +0300
|
382
|
+
Processing by ProjectsController#new as HTML
|
383
|
+
Rendered projects/new.html.erb within layouts/application (27.3ms)
|
384
|
+
Completed 200 OK in 35ms (Views: 31.5ms | ActiveRecord: 0.0ms)
|
385
|
+
|
386
|
+
|
387
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-08-21 23:31:14 +0300
|
388
|
+
Processing by ProjectsController#new as HTML
|
389
|
+
Rendered projects/new.html.erb within layouts/application (3.2ms)
|
390
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
391
|
+
|
392
|
+
|
393
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-08-21 23:31:16 +0300
|
394
|
+
Processing by ProjectsController#new as HTML
|
395
|
+
Rendered projects/new.html.erb within layouts/application (2.7ms)
|
396
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
397
|
+
|
398
|
+
|
399
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-08-21 23:31:16 +0300
|
400
|
+
Processing by ProjectsController#new as HTML
|
401
|
+
Rendered projects/new.html.erb within layouts/application (3.1ms)
|
402
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
403
|
+
|
404
|
+
|
405
|
+
Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-08-21 23:31:19 +0300
|
406
|
+
Processing by ProjectsController#new as HTML
|
407
|
+
Parameters: {"type"=>"prototype"}
|
408
|
+
Rendered projects/new.html.erb within layouts/application (5.7ms)
|
409
|
+
Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
|
410
|
+
|
411
|
+
|
412
|
+
Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-08-21 23:31:19 +0300
|
413
|
+
Processing by ProjectsController#new as HTML
|
414
|
+
Parameters: {"type"=>"prototype"}
|
415
|
+
Rendered projects/new.html.erb within layouts/application (3.7ms)
|
416
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
417
|
+
|
418
|
+
|
419
|
+
Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-08-21 23:31:22 +0300
|
420
|
+
Processing by ProjectsController#new as HTML
|
421
|
+
Parameters: {"type"=>"prototype"}
|
422
|
+
Rendered projects/new.html.erb within layouts/application (4.3ms)
|
423
|
+
Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
|
424
|
+
|
425
|
+
|
426
|
+
Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-08-21 23:31:22 +0300
|
427
|
+
Processing by ProjectsController#new as HTML
|
428
|
+
Parameters: {"type"=>"prototype"}
|
429
|
+
Rendered projects/new.html.erb within layouts/application (2.3ms)
|
430
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
431
|
+
|
432
|
+
|
433
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-08-21 23:31:24 +0300
|
434
|
+
Processing by ProjectsController#new as HTML
|
435
|
+
Rendered projects/new.html.erb within layouts/application (3.1ms)
|
436
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
437
|
+
|
438
|
+
|
439
|
+
Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-08-21 23:31:25 +0300
|
440
|
+
Processing by ProjectsController#new as HTML
|
441
|
+
Parameters: {"type"=>"prototype"}
|
442
|
+
Rendered projects/new.html.erb within layouts/application (3.9ms)
|
443
|
+
Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
|
444
|
+
|
445
|
+
|
446
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 23:31:26 +0300
|
447
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
448
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (4.1ms)
|
449
|
+
Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.0ms)
|
450
|
+
|
451
|
+
|
452
|
+
Started GET "/projects/new?type=jquery" for 127.0.0.1 at 2012-08-21 23:31:26 +0300
|
453
|
+
Processing by ProjectsController#new as HTML
|
454
|
+
Parameters: {"type"=>"jquery"}
|
455
|
+
Rendered projects/new.html.erb within layouts/application (3.9ms)
|
456
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
457
|
+
|
458
|
+
|
459
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-08-21 23:40:06 +0300
|
460
|
+
Processing by ProjectsController#new as HTML
|
461
|
+
Rendered projects/new.html.erb within layouts/application (28.9ms)
|
462
|
+
Completed 200 OK in 36ms (Views: 32.8ms | ActiveRecord: 0.0ms)
|
463
|
+
|
464
|
+
|
465
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-08-21 23:40:07 +0300
|
466
|
+
Processing by ProjectsController#new as HTML
|
467
|
+
Rendered projects/new.html.erb within layouts/application (4.2ms)
|
468
|
+
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
|
469
|
+
|
470
|
+
|
471
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-08-21 23:40:09 +0300
|
472
|
+
Processing by ProjectsController#new as HTML
|
473
|
+
Rendered projects/new.html.erb within layouts/application (2.6ms)
|
474
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
475
|
+
|
476
|
+
|
477
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-08-21 23:40:09 +0300
|
478
|
+
Processing by ProjectsController#new as HTML
|
479
|
+
Rendered projects/new.html.erb within layouts/application (3.0ms)
|
480
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
481
|
+
|
482
|
+
|
483
|
+
Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-08-21 23:40:12 +0300
|
484
|
+
Processing by ProjectsController#new as HTML
|
485
|
+
Parameters: {"type"=>"prototype"}
|
486
|
+
Rendered projects/new.html.erb within layouts/application (4.3ms)
|
487
|
+
Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
|
488
|
+
|
489
|
+
|
490
|
+
Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-08-21 23:40:12 +0300
|
491
|
+
Processing by ProjectsController#new as HTML
|
492
|
+
Parameters: {"type"=>"prototype"}
|
493
|
+
Rendered projects/new.html.erb within layouts/application (4.1ms)
|
494
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
495
|
+
|
496
|
+
|
497
|
+
Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-08-21 23:40:14 +0300
|
498
|
+
Processing by ProjectsController#new as HTML
|
499
|
+
Parameters: {"type"=>"prototype"}
|
500
|
+
Rendered projects/new.html.erb within layouts/application (4.3ms)
|
501
|
+
Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
|
502
|
+
|
503
|
+
|
504
|
+
Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-08-21 23:40:15 +0300
|
505
|
+
Processing by ProjectsController#new as HTML
|
506
|
+
Parameters: {"type"=>"prototype"}
|
507
|
+
Rendered projects/new.html.erb within layouts/application (2.8ms)
|
508
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
509
|
+
|
510
|
+
|
511
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-08-21 23:40:17 +0300
|
512
|
+
Processing by ProjectsController#new as HTML
|
513
|
+
Rendered projects/new.html.erb within layouts/application (4.7ms)
|
514
|
+
Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
|
515
|
+
|
516
|
+
|
517
|
+
Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-08-21 23:40:18 +0300
|
518
|
+
Processing by ProjectsController#new as HTML
|
519
|
+
Parameters: {"type"=>"prototype"}
|
520
|
+
Rendered projects/new.html.erb within layouts/application (4.3ms)
|
521
|
+
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
|
522
|
+
|
523
|
+
|
524
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 23:40:18 +0300
|
525
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
526
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (4.5ms)
|
527
|
+
Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.0ms)
|
528
|
+
|
529
|
+
|
530
|
+
Started GET "/projects/new?type=jquery" for 127.0.0.1 at 2012-08-21 23:40:19 +0300
|
531
|
+
Processing by ProjectsController#new as HTML
|
532
|
+
Parameters: {"type"=>"jquery"}
|
533
|
+
Rendered projects/new.html.erb within layouts/application (4.3ms)
|
534
|
+
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
|
535
|
+
Connecting to database specified by database.yml
|
536
|
+
|
537
|
+
|
538
|
+
Started GET "/projects/new" for 127.0.0.1 at Thu Aug 23 21:59:39 +0300 2012
|
29
539
|
Processing by ProjectsController#new as HTML
|
30
|
-
Rendered projects/new.html.erb within layouts/application (
|
31
|
-
Completed 200 OK in
|
540
|
+
Rendered projects/new.html.erb within layouts/application (78.1ms)
|
541
|
+
Completed 200 OK in 91ms (Views: 87.4ms | ActiveRecord: 0.7ms)
|
542
|
+
|
543
|
+
|
544
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at Thu Aug 23 21:59:39 +0300 2012
|
545
|
+
Served asset /jquery.js - 200 OK (4ms)
|
32
546
|
|
33
547
|
|
34
|
-
Started GET "/assets/
|
35
|
-
|
36
|
-
Served asset /jquery.js - 200 OK (417ms)
|
548
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at Thu Aug 23 21:59:39 +0300 2012
|
549
|
+
Served asset /jquery_nested_form.js - 200 OK (5ms)
|
37
550
|
|
38
551
|
|
39
|
-
Started GET "/assets/
|
40
|
-
|
41
|
-
Served asset /jquery_nested_form.js - 200 OK (25ms)
|
552
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at Thu Aug 23 21:59:39 +0300 2012
|
553
|
+
Served asset /jquery_events_test.js - 200 OK (3ms)
|
42
554
|
|
43
555
|
|
44
|
-
Started GET "/projects/new
|
556
|
+
Started GET "/projects/new" for 127.0.0.1 at Thu Aug 23 21:59:40 +0300 2012
|
557
|
+
Processing by ProjectsController#new as HTML
|
558
|
+
Rendered projects/new.html.erb within layouts/application (3.8ms)
|
559
|
+
Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
|
560
|
+
|
561
|
+
|
562
|
+
Started GET "/projects/new" for 127.0.0.1 at Thu Aug 23 21:59:42 +0300 2012
|
563
|
+
Processing by ProjectsController#new as HTML
|
564
|
+
Rendered projects/new.html.erb within layouts/application (4.2ms)
|
565
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
566
|
+
|
567
|
+
|
568
|
+
Started GET "/projects/new" for 127.0.0.1 at Thu Aug 23 21:59:42 +0300 2012
|
569
|
+
Processing by ProjectsController#new as HTML
|
570
|
+
Rendered projects/new.html.erb within layouts/application (3.7ms)
|
571
|
+
Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
|
572
|
+
|
573
|
+
|
574
|
+
Started GET "/projects/new?type=prototype" for 127.0.0.1 at Thu Aug 23 21:59:45 +0300 2012
|
575
|
+
Processing by ProjectsController#new as HTML
|
576
|
+
Parameters: {"type"=>"prototype"}
|
577
|
+
Rendered projects/new.html.erb within layouts/application (3.7ms)
|
578
|
+
Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
|
579
|
+
|
580
|
+
|
581
|
+
Started GET "/assets/prototype.js" for 127.0.0.1 at Thu Aug 23 21:59:45 +0300 2012
|
582
|
+
Compiled prototype.js (3ms) (pid 13671)
|
583
|
+
Served asset /prototype.js - 200 OK (18ms)
|
584
|
+
|
585
|
+
|
586
|
+
Started GET "/assets/prototype_events_test.js" for 127.0.0.1 at Thu Aug 23 21:59:45 +0300 2012
|
587
|
+
Compiled prototype_events_test.js (0ms) (pid 13671)
|
588
|
+
Served asset /prototype_events_test.js - 200 OK (55ms)
|
589
|
+
|
590
|
+
|
591
|
+
Started GET "/assets/prototype_nested_form.js" for 127.0.0.1 at Thu Aug 23 21:59:45 +0300 2012
|
592
|
+
Compiled prototype_nested_form.js (0ms) (pid 13671)
|
593
|
+
Served asset /prototype_nested_form.js - 200 OK (11ms)
|
594
|
+
|
595
|
+
|
596
|
+
Started GET "/projects/new?type=prototype" for 127.0.0.1 at Thu Aug 23 21:59:45 +0300 2012
|
597
|
+
Processing by ProjectsController#new as HTML
|
598
|
+
Parameters: {"type"=>"prototype"}
|
599
|
+
Rendered projects/new.html.erb within layouts/application (4.8ms)
|
600
|
+
Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
|
601
|
+
|
602
|
+
|
603
|
+
Started GET "/projects/new?type=prototype" for 127.0.0.1 at Thu Aug 23 21:59:47 +0300 2012
|
604
|
+
Processing by ProjectsController#new as HTML
|
605
|
+
Parameters: {"type"=>"prototype"}
|
606
|
+
Rendered projects/new.html.erb within layouts/application (2.4ms)
|
607
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
608
|
+
|
609
|
+
|
610
|
+
Started GET "/projects/new?type=prototype" for 127.0.0.1 at Thu Aug 23 21:59:48 +0300 2012
|
611
|
+
Processing by ProjectsController#new as HTML
|
612
|
+
Parameters: {"type"=>"prototype"}
|
613
|
+
Rendered projects/new.html.erb within layouts/application (3.7ms)
|
614
|
+
Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
|
615
|
+
|
616
|
+
|
617
|
+
Started GET "/projects/new" for 127.0.0.1 at Thu Aug 23 21:59:50 +0300 2012
|
618
|
+
Processing by ProjectsController#new as HTML
|
619
|
+
Rendered projects/new.html.erb within layouts/application (2.6ms)
|
620
|
+
Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
621
|
+
|
622
|
+
|
623
|
+
Started GET "/projects/new?type=prototype" for 127.0.0.1 at Thu Aug 23 21:59:51 +0300 2012
|
624
|
+
Processing by ProjectsController#new as HTML
|
625
|
+
Parameters: {"type"=>"prototype"}
|
626
|
+
Rendered projects/new.html.erb within layouts/application (4.6ms)
|
627
|
+
Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
|
628
|
+
|
629
|
+
|
630
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at Thu Aug 23 21:59:51 +0300 2012
|
631
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
632
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (3.9ms)
|
633
|
+
Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
|
634
|
+
|
635
|
+
|
636
|
+
Started GET "/projects/new?type=jquery" for 127.0.0.1 at Thu Aug 23 21:59:52 +0300 2012
|
637
|
+
Processing by ProjectsController#new as HTML
|
638
|
+
Parameters: {"type"=>"jquery"}
|
639
|
+
Rendered projects/new.html.erb within layouts/application (2.8ms)
|
640
|
+
Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
|
641
|
+
Connecting to database specified by database.yml
|
642
|
+
|
643
|
+
|
644
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-08-23 22:00:26 +0300
|
645
|
+
Processing by ProjectsController#new as HTML
|
646
|
+
Rendered projects/new.html.erb within layouts/application (63.0ms)
|
647
|
+
Completed 200 OK in 82ms (Views: 78.1ms | ActiveRecord: 0.7ms)
|
648
|
+
|
649
|
+
|
650
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-08-23 22:00:26 +0300
|
651
|
+
Served asset /jquery.js - 200 OK (9ms)
|
652
|
+
|
653
|
+
|
654
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-08-23 22:00:26 +0300
|
655
|
+
Served asset /jquery_nested_form.js - 200 OK (2ms)
|
656
|
+
|
657
|
+
|
658
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-08-23 22:00:26 +0300
|
659
|
+
Served asset /jquery_events_test.js - 200 OK (2ms)
|
660
|
+
|
661
|
+
|
662
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-08-23 22:00:26 +0300
|
663
|
+
Processing by ProjectsController#new as HTML
|
664
|
+
Rendered projects/new.html.erb within layouts/application (2.2ms)
|
665
|
+
Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
666
|
+
|
667
|
+
|
668
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-08-23 22:00:28 +0300
|
669
|
+
Processing by ProjectsController#new as HTML
|
670
|
+
Rendered projects/new.html.erb within layouts/application (2.0ms)
|
671
|
+
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
672
|
+
|
673
|
+
|
674
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-08-23 22:00:28 +0300
|
675
|
+
Processing by ProjectsController#new as HTML
|
676
|
+
Rendered projects/new.html.erb within layouts/application (2.2ms)
|
677
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
678
|
+
|
679
|
+
|
680
|
+
Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-08-23 22:00:31 +0300
|
681
|
+
Processing by ProjectsController#new as HTML
|
682
|
+
Parameters: {"type"=>"prototype"}
|
683
|
+
Rendered projects/new.html.erb within layouts/application (2.0ms)
|
684
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
685
|
+
|
686
|
+
|
687
|
+
Started GET "/assets/prototype.js" for 127.0.0.1 at 2012-08-23 22:00:31 +0300
|
688
|
+
Served asset /prototype.js - 200 OK (7ms)
|
689
|
+
|
690
|
+
|
691
|
+
Started GET "/assets/prototype_nested_form.js" for 127.0.0.1 at 2012-08-23 22:00:31 +0300
|
692
|
+
Served asset /prototype_nested_form.js - 200 OK (2ms)
|
693
|
+
|
694
|
+
|
695
|
+
Started GET "/assets/prototype_events_test.js" for 127.0.0.1 at 2012-08-23 22:00:31 +0300
|
696
|
+
Served asset /prototype_events_test.js - 200 OK (2ms)
|
697
|
+
|
698
|
+
|
699
|
+
Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-08-23 22:00:31 +0300
|
700
|
+
Processing by ProjectsController#new as HTML
|
701
|
+
Parameters: {"type"=>"prototype"}
|
702
|
+
Rendered projects/new.html.erb within layouts/application (1.9ms)
|
703
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
704
|
+
|
705
|
+
|
706
|
+
Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-08-23 22:00:34 +0300
|
45
707
|
Processing by ProjectsController#new as HTML
|
46
708
|
Parameters: {"type"=>"prototype"}
|
47
709
|
Rendered projects/new.html.erb within layouts/application (2.1ms)
|
48
|
-
Completed 200 OK in
|
710
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
49
711
|
|
50
712
|
|
51
|
-
Started GET "/
|
52
|
-
|
53
|
-
|
713
|
+
Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-08-23 22:00:34 +0300
|
714
|
+
Processing by ProjectsController#new as HTML
|
715
|
+
Parameters: {"type"=>"prototype"}
|
716
|
+
Rendered projects/new.html.erb within layouts/application (1.9ms)
|
717
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
54
718
|
|
55
719
|
|
56
|
-
Started GET "/
|
57
|
-
|
58
|
-
|
720
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-08-23 22:00:36 +0300
|
721
|
+
Processing by ProjectsController#new as HTML
|
722
|
+
Rendered projects/new.html.erb within layouts/application (3.0ms)
|
723
|
+
Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
|
724
|
+
|
725
|
+
|
726
|
+
Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-08-23 22:00:37 +0300
|
727
|
+
Processing by ProjectsController#new as HTML
|
728
|
+
Parameters: {"type"=>"prototype"}
|
729
|
+
Rendered projects/new.html.erb within layouts/application (3.3ms)
|
730
|
+
Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
|
731
|
+
|
732
|
+
|
733
|
+
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-23 22:00:37 +0300
|
734
|
+
Processing by ProjectsController#without_intermediate_inputs as HTML
|
735
|
+
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (3.4ms)
|
736
|
+
Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
|
737
|
+
|
738
|
+
|
739
|
+
Started GET "/projects/new?type=jquery" for 127.0.0.1 at 2012-08-23 22:00:38 +0300
|
740
|
+
Processing by ProjectsController#new as HTML
|
741
|
+
Parameters: {"type"=>"jquery"}
|
742
|
+
Rendered projects/new.html.erb within layouts/application (3.1ms)
|
743
|
+
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
|