nested_form 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (28) hide show
  1. data/CHANGELOG.rdoc +6 -0
  2. data/README.md +1 -1
  3. data/lib/nested_form/builder_mixin.rb +16 -11
  4. data/spec/dummy/app/models/project.rb +2 -0
  5. data/spec/dummy/db/test.sqlite3 +0 -0
  6. data/spec/dummy/log/test.log +177 -1003
  7. data/spec/dummy/tmp/cache/assets/C99/4D0/sprockets%2F5e30a6b911437f1428dc32c3ae182123 +0 -0
  8. data/spec/dummy/tmp/cache/assets/C99/7D0/sprockets%2F79513e6956e0ee8624976e041fd5636d +0 -0
  9. data/spec/dummy/tmp/cache/assets/CAA/C90/sprockets%2F1e6c8ee1258009385ccf5b84015424b3 +0 -0
  10. data/spec/dummy/tmp/cache/assets/CB2/CB0/sprockets%2F11cc8d161d71a716dd36f16849d90870 +0 -0
  11. data/spec/dummy/tmp/cache/assets/CB7/7F0/sprockets%2Fac97b043470f6fcc925c352f16956643 +0 -0
  12. data/spec/dummy/tmp/cache/assets/CDB/8A0/sprockets%2Faed2a2575c376263c26e93b56b57051d +0 -0
  13. data/spec/dummy/tmp/cache/assets/D1F/A10/sprockets%2F60317e62cb324bfd9987e8da9636fd06 +0 -0
  14. data/spec/dummy/tmp/cache/assets/D49/870/sprockets%2F90896142645585acc8baf56ad57e3afb +0 -0
  15. data/spec/dummy/tmp/cache/assets/D62/F00/sprockets%2F6ac03a007f26b1c18ed3d53498ad3eb8 +0 -0
  16. data/spec/dummy/tmp/cache/assets/D79/BC0/sprockets%2F85a1db977361cc5130fcefb4637ff67e +0 -0
  17. data/spec/dummy/tmp/cache/assets/D87/1F0/sprockets%2F61c9ceafb877fb740c67416ff6f782a9 +0 -0
  18. data/spec/dummy/tmp/cache/assets/DAD/4F0/sprockets%2F765acd1bf68dc90f7d3e61da78b1e659 +0 -0
  19. data/spec/dummy/tmp/cache/assets/E03/3F0/sprockets%2F82b37ae9eccec44c1ef44cfdd07d8534 +0 -0
  20. data/spec/dummy/tmp/cache/assets/E0A/CA0/sprockets%2F7fe72ac1c0db1a7e8e7f59cf25e8a39e +0 -0
  21. data/spec/dummy/tmp/cache/assets/E3A/A60/sprockets%2F7c72c96cfc66454caf5fc8ca0fedd4f3 +0 -0
  22. data/spec/dummy/tmp/cache/assets/E54/400/sprockets%2Fd0cbc16cc37efcf9dc41f242b5dbbf81 +0 -0
  23. data/spec/dummy/tmp/cache/assets/EB7/AB0/sprockets%2F801d29a5debdbfbfb4eef14d70d9bcdb +0 -0
  24. data/spec/dummy/tmp/cache/assets/F48/5E0/sprockets%2F26cd6ffcffbebbe2fd6cd1a8f0c2debc +0 -0
  25. data/spec/nested_form/builder_spec.rb +31 -9
  26. metadata +14 -16
  27. data/spec/dummy/db/development.sqlite3 +0 -0
  28. data/spec/dummy/log/development.log +0 -2363
@@ -1,3 +1,9 @@
1
+ 0.3.1 (November 5, 2012)
2
+
3
+ * Raise ArgumentError when accepts_nested_attributes_for is missing
4
+
5
+ * Fix wrapper element disabling feature (#202 and #214)
6
+
1
7
  0.3.0 (October 23, 2012)
2
8
 
3
9
  * Fix issue when deeply nested and first level only has a select input (thanks eric88)
data/README.md CHANGED
@@ -39,7 +39,7 @@ You can then include the generated JavaScript in your layout.
39
39
 
40
40
  ## Usage
41
41
 
42
- Imagine you have a `Project` model that `has_many :tasks`. To be able to use this gem, you'll need to add `accepts_nested_attributes_for :tasks` to your Project model. If you wish to allow the nested objects to be destroyed, then add the `:allow_destroy => true` option to that declaration. If you don't have the `accepts_nested_attributes_for :tasks` you'll get a Missing Block Error. See the [accepts_nested_attributes_for documentation](http://api.rubyonrails.org/classes/ActiveRecord/NestedAttributes/ClassMethods.html#method-i-accepts_nested_attributes_for) for details on all available options.
42
+ Imagine you have a `Project` model that `has_many :tasks`. To be able to use this gem, you'll need to add `accepts_nested_attributes_for :tasks` to your Project model. If you wish to allow the nested objects to be destroyed, then add the `:allow_destroy => true` option to that declaration. See the [accepts_nested_attributes_for documentation](http://api.rubyonrails.org/classes/ActiveRecord/NestedAttributes/ClassMethods.html#method-i-accepts_nested_attributes_for) for details on all available options.
43
43
 
44
44
  This will create a `tasks_attributes=` method, so you may need to add it to the `attr_accessible` array (`attr_accessible :tasks_attributes`).
45
45
 
@@ -20,17 +20,21 @@ module NestedForm
20
20
  options = args.extract_options!.symbolize_keys
21
21
  association = args.pop
22
22
 
23
- unless (reflection = object.class.reflect_on_association(association))
24
- raise ArgumentError, "Failed to find #{object.class.name} association by name \"#{association}\""
23
+ unless object.respond_to?("#{association}_attributes=")
24
+ raise ArgumentError, "Invalid association. Make sure that accepts_nested_attributes_for is used for #{association.inspect} association."
25
+ end
26
+
27
+ model_object = options.delete(:model_object) do
28
+ reflection = object.class.reflect_on_association(association)
29
+ reflection.klass.new
25
30
  end
26
- model_object = options.delete(:model_object) || reflection.klass.new
27
31
 
28
32
  options[:class] = [options[:class], "add_nested_fields"].compact.join(" ")
29
33
  options["data-association"] = association
30
34
  options["data-blueprint-id"] = fields_blueprint_id = fields_blueprint_id_for(association)
31
35
  args << (options.delete(:href) || "javascript:void(0)")
32
36
  args << options
33
-
37
+
34
38
  @fields ||= {}
35
39
  @template.after_nested_form(fields_blueprint_id) do
36
40
  blueprint = {:id => fields_blueprint_id, :style => 'display: none'}
@@ -56,12 +60,12 @@ module NestedForm
56
60
  def link_to_remove(*args, &block)
57
61
  options = args.extract_options!.symbolize_keys
58
62
  options[:class] = [options[:class], "remove_nested_fields"].compact.join(" ")
59
-
63
+
60
64
  # Extracting "milestones" from "...[milestones_attributes][...]"
61
65
  md = object_name.to_s.match /(\w+)_attributes\]\[[\w\d]+\]$/
62
66
  association = md && md[1]
63
67
  options["data-association"] = association
64
-
68
+
65
69
  args << (options.delete(:href) || "javascript:void(0)")
66
70
  args << options
67
71
  hidden_field(:_destroy) << @template.link_to(*args, &block)
@@ -71,10 +75,11 @@ module NestedForm
71
75
  # TODO Test this better
72
76
  block = args.pop || Proc.new { |fields| @template.render(:partial => "#{association_name.to_s.singularize}_fields", :locals => {:f => fields}) }
73
77
 
74
- options = if args[0].kind_of? Array # Rails 3.0.x
75
- args[0].dup.extract_options!
76
- else
77
- args.dup.extract_options!
78
+ options = args.dup.extract_options!
79
+
80
+ # Rails 3.0.x
81
+ if options.empty? && args[0].kind_of?(Array)
82
+ options = args[0].dup.extract_options!
78
83
  end
79
84
 
80
85
  @fields ||= {}
@@ -86,7 +91,7 @@ module NestedForm
86
91
  classes = 'fields'
87
92
  classes << ' marked_for_destruction' if object.respond_to?(:marked_for_destruction?) && object.marked_for_destruction?
88
93
 
89
- if options.fetch(:wrapper, true)
94
+ if options[:wrapper] != false # wrap even if nil
90
95
  @template.content_tag(:div, super, :class => classes)
91
96
  else
92
97
  super
@@ -3,4 +3,6 @@ class Project < ActiveRecord::Base
3
3
  has_many :assignments, :class_name => 'ProjectTask'
4
4
  accepts_nested_attributes_for :tasks
5
5
  accepts_nested_attributes_for :assignments
6
+
7
+ has_many :not_nested_tasks, :class_name => 'Task'
6
8
  end
Binary file
@@ -1,22 +1,22 @@
1
1
  Connecting to database specified by database.yml
2
2
  Connecting to database specified by database.yml
3
-  (0.2ms) select sqlite_version(*)
4
-  (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
5
-  (0.1ms) PRAGMA index_list("schema_migrations")
6
-  (25.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
+  (2.8ms) select sqlite_version(*)
4
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
5
+  (0.0ms) PRAGMA index_list("schema_migrations")
6
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7
7
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
8
8
  Migrating to InitialTables (20110710143903)
9
-  (0.1ms) begin transaction
10
-  (0.7ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
11
-  (0.2ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "project_id" integer, "name" varchar(255))
12
-  (0.3ms) CREATE TABLE "milestones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "name" varchar(255)) 
13
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110710143903')
14
-  (3.1ms) commit transaction
9
+  (0.0ms) begin transaction
10
+  (0.4ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
11
+  (0.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "project_id" integer, "name" varchar(255))
12
+  (0.1ms) CREATE TABLE "milestones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "name" varchar(255)) 
13
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110710143903')
14
+  (0.6ms) commit transaction
15
15
  Migrating to AddAssociationWithClassName (20120819164528)
16
-  (0.1ms) begin transaction
16
+  (0.0ms) begin transaction
17
17
   (0.4ms) CREATE TABLE "project_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "project_id" integer, "name" varchar(255)) 
18
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120819164528')
19
-  (2.8ms) commit transaction
18
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120819164528')
19
+  (0.7ms) commit transaction
20
20
   (0.3ms) select sqlite_version(*)
21
21
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
22
22
   (0.0ms) PRAGMA index_list("milestones")
@@ -29,1044 +29,336 @@ Connecting to database specified by database.yml
29
29
  Connecting to database specified by database.yml
30
30
  Connecting to database specified by database.yml
31
31
  Connecting to database specified by database.yml
32
- Connecting to database specified by database.yml
33
- Connecting to database specified by database.yml
34
- Connecting to database specified by database.yml
35
- Connecting to database specified by database.yml
36
- Connecting to database specified by database.yml
37
- Connecting to database specified by database.yml
38
- Connecting to database specified by database.yml
39
- Connecting to database specified by database.yml
40
- Connecting to database specified by database.yml
41
- Connecting to database specified by database.yml
42
-
43
-
44
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:09:34 +0400
45
- Processing by ProjectsController#new as HTML
46
- Rendered projects/new.html.erb within layouts/application (93.1ms)
47
- Completed 200 OK in 129ms (Views: 123.1ms | ActiveRecord: 1.1ms)
48
-
49
-
50
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:09:34 +0400
51
- Compiled jquery_nested_form.js (0ms) (pid 69512)
52
- Served asset /jquery_nested_form.js - 200 OK (247ms)
53
-
54
-
55
- Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-16 15:09:35 +0400
56
- Compiled jquery.js (3ms) (pid 69512)
57
- Served asset /jquery.js - 200 OK (230ms)
58
-
59
-
60
- Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-16 15:09:35 +0400
61
- Compiled jquery_events_test.js (0ms) (pid 69512)
62
- Served asset /jquery_events_test.js - 200 OK (165ms)
63
-
64
-
65
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:09:39 +0400
66
- Processing by ProjectsController#new as HTML
67
- Rendered projects/new.html.erb within layouts/application (4.5ms)
68
- Completed 200 OK in 11ms (Views: 7.2ms | ActiveRecord: 0.0ms)
69
-
70
-
71
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:09:41 +0400
72
- Processing by ProjectsController#new as HTML
73
- Rendered projects/new.html.erb within layouts/application (48.0ms)
74
- Completed 200 OK in 50ms (Views: 50.0ms | ActiveRecord: 0.0ms)
75
-
76
-
77
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:09:44 +0400
78
- Processing by ProjectsController#new as HTML
79
- Rendered projects/new.html.erb within layouts/application (2.8ms)
80
- Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
81
-
82
-
83
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-16 15:09:47 +0400
84
- Processing by ProjectsController#new as HTML
85
- Parameters: {"type"=>"prototype"}
86
- Rendered projects/new.html.erb within layouts/application (6.0ms)
87
- Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
88
-
89
-
90
- Started GET "/assets/prototype.js" for 127.0.0.1 at 2012-09-16 15:09:47 +0400
91
- Compiled prototype.js (123ms) (pid 69512)
92
- Served asset /prototype.js - 200 OK (540ms)
93
-
94
-
95
- Started GET "/assets/prototype_nested_form.js" for 127.0.0.1 at 2012-09-16 15:09:48 +0400
96
- Compiled prototype_nested_form.js (0ms) (pid 69512)
97
- Served asset /prototype_nested_form.js - 200 OK (14ms)
98
-
99
-
100
- Started GET "/assets/prototype_events_test.js" for 127.0.0.1 at 2012-09-16 15:09:48 +0400
101
- Compiled prototype_events_test.js (0ms) (pid 69512)
102
- Served asset /prototype_events_test.js - 200 OK (13ms)
103
-
104
-
105
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-16 15:09:49 +0400
106
- Processing by ProjectsController#new as HTML
107
- Parameters: {"type"=>"prototype"}
108
- Rendered projects/new.html.erb within layouts/application (3.1ms)
109
- Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
110
-
111
-
112
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-16 15:09:53 +0400
113
- Processing by ProjectsController#new as HTML
114
- Parameters: {"type"=>"prototype"}
115
- Rendered projects/new.html.erb within layouts/application (3.1ms)
116
- Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms)
117
-
118
-
119
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-16 15:09:56 +0400
120
- Processing by ProjectsController#new as HTML
121
- Parameters: {"type"=>"prototype"}
122
- Rendered projects/new.html.erb within layouts/application (2.8ms)
123
- Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
124
-
125
-
126
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:09:58 +0400
127
- Processing by ProjectsController#new as HTML
128
- Rendered projects/new.html.erb within layouts/application (4.8ms)
129
- Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
130
-
131
-
132
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:09:58 +0400
133
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
134
-
135
-
136
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-16 15:10:00 +0400
137
- Processing by ProjectsController#new as HTML
138
- Parameters: {"type"=>"prototype"}
139
- Rendered projects/new.html.erb within layouts/application (4.5ms)
140
- Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
141
-
142
-
143
- Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-09-16 15:10:03 +0400
144
- Processing by ProjectsController#without_intermediate_inputs as HTML
145
- Rendered projects/without_intermediate_inputs.html.erb within layouts/application (3.6ms)
146
- Completed 200 OK in 46ms (Views: 45.1ms | ActiveRecord: 0.0ms)
147
-
148
-
149
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:10:03 +0400
150
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
151
-
152
-
153
- Started GET "/projects/new?type=jquery" for 127.0.0.1 at 2012-09-16 15:10:05 +0400
154
- Processing by ProjectsController#new as HTML
155
- Parameters: {"type"=>"jquery"}
156
- Rendered projects/new.html.erb within layouts/application (3.4ms)
157
- Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
158
-
159
-
160
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:10:05 +0400
161
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
162
- Connecting to database specified by database.yml
163
-
164
-
165
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:13:58 +0400
166
- Processing by ProjectsController#new as HTML
167
- Rendered projects/new.html.erb within layouts/application (324.0ms)
168
- Completed 200 OK in 575ms (Views: 520.9ms | ActiveRecord: 14.4ms)
169
-
170
-
171
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:13:59 +0400
172
- Compiled jquery_nested_form.js (8ms) (pid 69606)
173
- Served asset /jquery_nested_form.js - 200 OK (117ms)
174
-
175
-
176
- Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-16 15:14:00 +0400
177
- Compiled jquery.js (2ms) (pid 69606)
178
- Served asset /jquery.js - 200 OK (174ms)
179
-
180
-
181
- Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-16 15:14:00 +0400
182
- Compiled jquery_events_test.js (0ms) (pid 69606)
183
- Served asset /jquery_events_test.js - 200 OK (14ms)
184
-
185
-
186
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:14:01 +0400
187
- Processing by ProjectsController#new as HTML
188
- Rendered projects/new.html.erb within layouts/application (17.8ms)
189
- Completed 200 OK in 22ms (Views: 21.8ms | ActiveRecord: 0.0ms)
190
-
191
-
192
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:14:07 +0400
193
- Processing by ProjectsController#new as HTML
194
- Rendered projects/new.html.erb within layouts/application (3.6ms)
195
- Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
196
-
197
-
198
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:14:07 +0400
199
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
200
-
201
-
202
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:14:10 +0400
203
- Processing by ProjectsController#new as HTML
204
- Rendered projects/new.html.erb within layouts/application (3.2ms)
205
- Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
206
-
207
-
208
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:14:10 +0400
209
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
210
-
211
-
212
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-16 15:14:13 +0400
213
- Processing by ProjectsController#new as HTML
214
- Parameters: {"type"=>"prototype"}
215
- Rendered projects/new.html.erb within layouts/application (4.8ms)
216
- Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
217
-
218
-
219
- Started GET "/assets/prototype.js" for 127.0.0.1 at 2012-09-16 15:14:14 +0400
220
- Served asset /prototype.js - 200 OK (337ms)
221
-
222
-
223
- Started GET "/assets/prototype_nested_form.js" for 127.0.0.1 at 2012-09-16 15:14:14 +0400
224
- Served asset /prototype_nested_form.js - 200 OK (39ms)
225
-
226
-
227
- Started GET "/assets/prototype_events_test.js" for 127.0.0.1 at 2012-09-16 15:14:14 +0400
228
- Served asset /prototype_events_test.js - 200 OK (48ms)
229
-
230
-
231
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-16 15:14:15 +0400
232
- Processing by ProjectsController#new as HTML
233
- Parameters: {"type"=>"prototype"}
234
- Rendered projects/new.html.erb within layouts/application (3.8ms)
235
- Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
236
-
237
-
238
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-16 15:14:19 +0400
239
- Processing by ProjectsController#new as HTML
240
- Parameters: {"type"=>"prototype"}
241
- Rendered projects/new.html.erb within layouts/application (3.2ms)
242
- Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
243
-
244
-
245
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-16 15:14:21 +0400
246
- Processing by ProjectsController#new as HTML
247
- Parameters: {"type"=>"prototype"}
248
- Rendered projects/new.html.erb within layouts/application (2.7ms)
249
- Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
250
-
251
-
252
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:14:24 +0400
253
- Processing by ProjectsController#new as HTML
254
- Rendered projects/new.html.erb within layouts/application (3.6ms)
255
- Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
256
-
257
-
258
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:14:24 +0400
259
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
260
-
261
-
262
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-16 15:14:24 +0400
263
- Processing by ProjectsController#new as HTML
264
- Parameters: {"type"=>"prototype"}
265
- Rendered projects/new.html.erb within layouts/application (2.8ms)
266
- Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
267
-
268
-
269
- Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-09-16 15:14:27 +0400
270
- Processing by ProjectsController#without_intermediate_inputs as HTML
271
- Rendered projects/without_intermediate_inputs.html.erb within layouts/application (3.7ms)
272
- Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.0ms)
273
-
274
-
275
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:14:27 +0400
276
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
277
-
278
-
279
- Started GET "/projects/new?type=jquery" for 127.0.0.1 at 2012-09-16 15:14:27 +0400
280
- Processing by ProjectsController#new as HTML
281
- Parameters: {"type"=>"jquery"}
282
- Rendered projects/new.html.erb within layouts/application (3.0ms)
283
- Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
284
-
285
-
286
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:14:27 +0400
287
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
288
- Connecting to database specified by database.yml
289
-
290
-
291
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:17:53 +0400
292
- Processing by ProjectsController#new as HTML
293
- Rendered projects/new.html.erb within layouts/application (100.5ms)
294
- Completed 200 OK in 139ms (Views: 131.7ms | ActiveRecord: 1.4ms)
295
-
296
-
297
- Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-16 15:17:53 +0400
298
- Served asset /jquery.js - 200 OK (65ms)
299
-
300
-
301
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:17:53 +0400
302
- Compiled jquery_nested_form.js (0ms) (pid 69646)
303
- Served asset /jquery_nested_form.js - 200 OK (140ms)
304
-
305
-
306
- Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-16 15:17:54 +0400
307
- Served asset /jquery_events_test.js - 200 OK (97ms)
308
-
309
-
310
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:17:56 +0400
311
- Processing by ProjectsController#new as HTML
312
- Rendered projects/new.html.erb within layouts/application (4.2ms)
313
- Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.0ms)
314
-
315
-
316
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:17:56 +0400
317
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
318
-
319
-
320
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:17:59 +0400
321
- Processing by ProjectsController#new as HTML
322
- Rendered projects/new.html.erb within layouts/application (5.6ms)
323
- Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
324
-
325
-
326
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:17:59 +0400
327
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
328
-
329
-
330
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:18:01 +0400
331
- Processing by ProjectsController#new as HTML
332
- Rendered projects/new.html.erb within layouts/application (5.4ms)
333
- Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
334
-
335
-
336
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:18:01 +0400
337
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
338
-
339
-
340
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-16 15:18:04 +0400
341
- Processing by ProjectsController#new as HTML
342
- Parameters: {"type"=>"prototype"}
343
- Rendered projects/new.html.erb within layouts/application (3.8ms)
344
- Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
345
-
346
-
347
- Started GET "/assets/prototype.js" for 127.0.0.1 at 2012-09-16 15:18:04 +0400
348
- Served asset /prototype.js - 200 OK (25ms)
349
-
350
-
351
- Started GET "/assets/prototype_nested_form.js" for 127.0.0.1 at 2012-09-16 15:18:04 +0400
352
- Compiled prototype_nested_form.js (0ms) (pid 69646)
353
- Served asset /prototype_nested_form.js - 200 OK (30ms)
354
-
355
-
356
- Started GET "/assets/prototype_events_test.js" for 127.0.0.1 at 2012-09-16 15:18:04 +0400
357
- Served asset /prototype_events_test.js - 200 OK (29ms)
358
-
359
-
360
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-16 15:18:05 +0400
361
- Processing by ProjectsController#new as HTML
362
- Parameters: {"type"=>"prototype"}
363
- Rendered projects/new.html.erb within layouts/application (2.7ms)
364
- Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
365
-
366
-
367
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-16 15:18:08 +0400
368
- Processing by ProjectsController#new as HTML
369
- Parameters: {"type"=>"prototype"}
370
- Rendered projects/new.html.erb within layouts/application (3.8ms)
371
- Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
372
-
373
-
374
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-16 15:18:09 +0400
375
- Processing by ProjectsController#new as HTML
376
- Parameters: {"type"=>"prototype"}
377
- Rendered projects/new.html.erb within layouts/application (4.8ms)
378
- Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
379
-
380
-
381
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:18:12 +0400
382
- Processing by ProjectsController#new as HTML
383
- Rendered projects/new.html.erb within layouts/application (2.8ms)
384
- Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
385
-
386
-
387
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:18:12 +0400
388
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
389
-
390
-
391
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-16 15:18:15 +0400
392
- Processing by ProjectsController#new as HTML
393
- Parameters: {"type"=>"prototype"}
394
- Rendered projects/new.html.erb within layouts/application (3.8ms)
395
- Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
396
-
397
-
398
- Started GET "/assets/prototype_nested_form.js" for 127.0.0.1 at 2012-09-16 15:18:15 +0400
399
- Served asset /prototype_nested_form.js - 304 Not Modified (0ms)
400
-
401
-
402
- Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-09-16 15:18:15 +0400
403
- Processing by ProjectsController#without_intermediate_inputs as HTML
404
- Rendered projects/without_intermediate_inputs.html.erb within layouts/application (3.9ms)
405
- Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
406
-
407
-
408
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:18:15 +0400
409
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
410
-
411
-
412
- Started GET "/projects/new?type=jquery" for 127.0.0.1 at 2012-09-16 15:18:17 +0400
413
- Processing by ProjectsController#new as HTML
414
- Parameters: {"type"=>"jquery"}
415
- Rendered projects/new.html.erb within layouts/application (3.5ms)
416
- Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
417
-
418
-
419
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:18:17 +0400
420
- Compiled jquery_nested_form.js (0ms) (pid 69646)
421
- Served asset /jquery_nested_form.js - 200 OK (35ms)
422
- Connecting to database specified by database.yml
423
-
424
-
425
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:18:29 +0400
426
- Processing by ProjectsController#new as HTML
427
- Rendered projects/new.html.erb within layouts/application (89.4ms)
428
- Completed 200 OK in 134ms (Views: 129.1ms | ActiveRecord: 0.9ms)
429
-
430
-
431
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:18:29 +0400
432
- Served asset /jquery_nested_form.js - 200 OK (4ms)
433
-
434
-
435
- Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-16 15:18:29 +0400
436
- Served asset /jquery_events_test.js - 200 OK (7ms)
437
-
438
-
439
- Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-16 15:18:29 +0400
440
- Served asset /jquery.js - 200 OK (35ms)
441
-
442
-
443
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:18:29 +0400
444
- Processing by ProjectsController#new as HTML
445
- Rendered projects/new.html.erb within layouts/application (2.9ms)
446
- Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
447
-
448
-
449
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:18:32 +0400
450
- Processing by ProjectsController#new as HTML
451
- Rendered projects/new.html.erb within layouts/application (4.3ms)
452
- Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
453
-
454
-
455
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:18:32 +0400
456
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
457
-
458
-
459
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:18:32 +0400
460
- Processing by ProjectsController#new as HTML
461
- Rendered projects/new.html.erb within layouts/application (3.0ms)
462
- Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
463
-
464
-
465
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:18:32 +0400
466
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
467
-
468
-
469
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-16 15:18:35 +0400
470
- Processing by ProjectsController#new as HTML
471
- Parameters: {"type"=>"prototype"}
472
- Rendered projects/new.html.erb within layouts/application (3.1ms)
473
- Completed 200 OK in 9ms (Views: 5.1ms | ActiveRecord: 0.0ms)
474
-
475
-
476
- Started GET "/assets/prototype_nested_form.js" for 127.0.0.1 at 2012-09-16 15:18:35 +0400
477
- Served asset /prototype_nested_form.js - 200 OK (8ms)
478
-
479
-
480
- Started GET "/assets/prototype_events_test.js" for 127.0.0.1 at 2012-09-16 15:18:35 +0400
481
- Served asset /prototype_events_test.js - 200 OK (26ms)
482
-
483
-
484
- Started GET "/assets/prototype.js" for 127.0.0.1 at 2012-09-16 15:18:35 +0400
485
- Served asset /prototype.js - 200 OK (85ms)
486
-
487
-
488
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-16 15:18:35 +0400
489
- Processing by ProjectsController#new as HTML
490
- Parameters: {"type"=>"prototype"}
491
- Rendered projects/new.html.erb within layouts/application (3.1ms)
492
- Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
493
-
494
-
495
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-16 15:18:38 +0400
496
- Processing by ProjectsController#new as HTML
497
- Parameters: {"type"=>"prototype"}
498
- Rendered projects/new.html.erb within layouts/application (2.8ms)
499
- Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
500
-
501
-
502
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-16 15:18:39 +0400
503
- Processing by ProjectsController#new as HTML
504
- Parameters: {"type"=>"prototype"}
505
- Rendered projects/new.html.erb within layouts/application (6.7ms)
506
- Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms)
507
-
508
-
509
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:18:43 +0400
510
- Processing by ProjectsController#new as HTML
511
- Rendered projects/new.html.erb within layouts/application (2.7ms)
512
- Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
513
-
514
-
515
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:18:43 +0400
516
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
517
-
518
-
519
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-16 15:18:44 +0400
520
- Processing by ProjectsController#new as HTML
521
- Parameters: {"type"=>"prototype"}
522
- Rendered projects/new.html.erb within layouts/application (2.7ms)
523
- Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
524
-
525
-
526
- Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-09-16 15:18:45 +0400
527
- Processing by ProjectsController#without_intermediate_inputs as HTML
528
- Rendered projects/without_intermediate_inputs.html.erb within layouts/application (3.5ms)
529
- Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.0ms)
530
-
531
-
532
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:18:46 +0400
533
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
534
-
535
-
536
- Started GET "/projects/new?type=jquery" for 127.0.0.1 at 2012-09-16 15:18:46 +0400
537
- Processing by ProjectsController#new as HTML
538
- Parameters: {"type"=>"jquery"}
539
- Rendered projects/new.html.erb within layouts/application (4.1ms)
540
- Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.0ms)
541
-
542
-
543
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:18:46 +0400
544
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
545
- Connecting to database specified by database.yml
546
-
547
-
548
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-18 23:30:51 +0300
549
- Processing by ProjectsController#new as HTML
550
- Rendered projects/new.html.erb within layouts/application (237.4ms)
551
- Completed 200 OK in 462ms (Views: 455.7ms | ActiveRecord: 0.8ms)
552
-
553
-
554
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-18 23:30:52 +0300
555
- Compiled jquery_nested_form.js (0ms) (pid 71363)
556
- Served asset /jquery_nested_form.js - 200 OK (253ms)
557
-
558
-
559
- Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-18 23:30:52 +0300
560
- Served asset /jquery_events_test.js - 200 OK (109ms)
561
-
562
-
563
- Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-18 23:30:52 +0300
564
- Served asset /jquery.js - 200 OK (67ms)
565
32
 
566
33
 
567
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-18 23:30:54 +0300
34
+ Started GET "/projects/new" for 127.0.0.1 at 2012-10-28 17:13:36 +0300
568
35
  Processing by ProjectsController#new as HTML
569
- Rendered projects/new.html.erb within layouts/application (2.7ms)
570
- Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
571
-
572
-
573
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-18 23:30:56 +0300
574
- Processing by ProjectsController#new as HTML
575
- Rendered projects/new.html.erb within layouts/application (2.7ms)
576
- Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
577
-
578
-
579
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-18 23:30:56 +0300
580
- Processing by ProjectsController#new as HTML
581
- Rendered projects/new.html.erb within layouts/application (2.7ms)
582
- Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
583
-
584
-
585
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-18 23:31:00 +0300
586
- Processing by ProjectsController#new as HTML
587
- Parameters: {"type"=>"prototype"}
588
- Rendered projects/new.html.erb within layouts/application (2.6ms)
589
- Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
590
-
591
-
592
- Started GET "/assets/prototype_nested_form.js" for 127.0.0.1 at 2012-09-18 23:31:00 +0300
593
- Served asset /prototype_nested_form.js - 200 OK (16ms)
594
-
595
-
596
- Started GET "/assets/prototype_events_test.js" for 127.0.0.1 at 2012-09-18 23:31:00 +0300
597
- Served asset /prototype_events_test.js - 200 OK (13ms)
598
-
599
-
600
- Started GET "/assets/prototype.js" for 127.0.0.1 at 2012-09-18 23:31:00 +0300
601
- Served asset /prototype.js - 200 OK (125ms)
602
-
603
-
604
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-18 23:31:02 +0300
605
- Processing by ProjectsController#new as HTML
606
- Parameters: {"type"=>"prototype"}
607
- Rendered projects/new.html.erb within layouts/application (2.8ms)
608
- Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
609
-
610
-
611
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-18 23:31:06 +0300
612
- Processing by ProjectsController#new as HTML
613
- Parameters: {"type"=>"prototype"}
614
- Rendered projects/new.html.erb within layouts/application (3.0ms)
615
- Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
616
-
617
-
618
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-18 23:31:08 +0300
619
- Processing by ProjectsController#new as HTML
620
- Parameters: {"type"=>"prototype"}
621
- Rendered projects/new.html.erb within layouts/application (2.8ms)
622
- Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
623
-
624
-
625
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-18 23:31:12 +0300
626
- Processing by ProjectsController#new as HTML
627
- Rendered projects/new.html.erb within layouts/application (2.5ms)
628
- Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
629
-
630
-
631
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-18 23:31:12 +0300
632
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
633
-
634
-
635
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-18 23:31:13 +0300
636
- Processing by ProjectsController#new as HTML
637
- Parameters: {"type"=>"prototype"}
638
- Rendered projects/new.html.erb within layouts/application (4.9ms)
639
- Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
640
-
641
-
642
- Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-09-18 23:31:14 +0300
643
- Processing by ProjectsController#without_intermediate_inputs as HTML
644
- Rendered projects/without_intermediate_inputs.html.erb within layouts/application (3.3ms)
645
- Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
36
+ Rendered projects/new.html.erb within layouts/application (39.1ms)
37
+ Completed 200 OK in 56ms (Views: 52.2ms | ActiveRecord: 0.7ms)
646
38
 
647
39
 
648
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-18 23:31:14 +0300
649
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
40
+ Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-28 17:13:36 +0300
41
+ Compiled jquery.js (3ms) (pid 9308)
42
+ Served asset /jquery.js - 200 OK (23ms)
650
43
 
651
44
 
652
- Started GET "/projects/new?type=jquery" for 127.0.0.1 at 2012-09-18 23:31:15 +0300
653
- Processing by ProjectsController#new as HTML
654
- Parameters: {"type"=>"jquery"}
655
- Rendered projects/new.html.erb within layouts/application (3.9ms)
656
- Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
657
-
658
-
659
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-18 23:31:15 +0300
660
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
661
- Connecting to database specified by database.yml
662
-
663
-
664
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-18 23:56:26 +0300
665
- Processing by ProjectsController#new as HTML
666
- Rendered projects/new.html.erb within layouts/application (147.6ms)
667
- Completed 200 OK in 377ms (Views: 367.0ms | ActiveRecord: 1.0ms)
45
+ Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-28 17:13:36 +0300
46
+ Compiled jquery_nested_form.js (0ms) (pid 9308)
47
+ Served asset /jquery_nested_form.js - 200 OK (9ms)
668
48
 
669
49
 
670
- Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-18 23:56:28 +0300
671
- Served asset /jquery.js - 200 OK (92ms)
50
+ Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-28 17:13:36 +0300
51
+ Compiled jquery_events_test.js (0ms) (pid 9308)
52
+ Served asset /jquery_events_test.js - 200 OK (40ms)
672
53
 
673
54
 
674
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-18 23:56:28 +0300
675
- Compiled jquery_nested_form.js (0ms) (pid 71562)
676
- Served asset /jquery_nested_form.js - 200 OK (23ms)
677
-
678
-
679
- Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-18 23:56:28 +0300
680
- Served asset /jquery_events_test.js - 200 OK (48ms)
681
-
682
-
683
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-18 23:56:29 +0300
55
+ Started GET "/projects/new" for 127.0.0.1 at 2012-10-28 17:13:37 +0300
684
56
  Processing by ProjectsController#new as HTML
685
- Rendered projects/new.html.erb within layouts/application (3.5ms)
686
- Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
57
+ Rendered projects/new.html.erb within layouts/application (4.3ms)
58
+ Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
687
59
 
688
60
 
689
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-18 23:56:32 +0300
61
+ Started GET "/projects/new" for 127.0.0.1 at 2012-10-28 17:13:39 +0300
690
62
  Processing by ProjectsController#new as HTML
691
- Rendered projects/new.html.erb within layouts/application (2.8ms)
692
- Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
693
-
694
-
695
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-18 23:56:32 +0300
696
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
63
+ Rendered projects/new.html.erb within layouts/application (4.3ms)
64
+ Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
697
65
 
698
66
 
699
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-18 23:56:32 +0300
67
+ Started GET "/projects/new" for 127.0.0.1 at 2012-10-28 17:13:39 +0300
700
68
  Processing by ProjectsController#new as HTML
701
- Rendered projects/new.html.erb within layouts/application (2.5ms)
702
- Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
703
-
704
-
705
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-18 23:56:32 +0300
706
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
69
+ Rendered projects/new.html.erb within layouts/application (2.1ms)
70
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
707
71
 
708
72
 
709
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-18 23:56:36 +0300
73
+ Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-10-28 17:13:42 +0300
710
74
  Processing by ProjectsController#new as HTML
711
75
  Parameters: {"type"=>"prototype"}
712
- Rendered projects/new.html.erb within layouts/application (2.4ms)
713
- Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
714
-
715
-
716
- Started GET "/assets/prototype.js" for 127.0.0.1 at 2012-09-18 23:56:36 +0300
717
- Served asset /prototype.js - 200 OK (86ms)
76
+ Rendered projects/new.html.erb within layouts/application (4.1ms)
77
+ Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.0ms)
718
78
 
719
79
 
720
- Started GET "/assets/prototype_nested_form.js" for 127.0.0.1 at 2012-09-18 23:56:36 +0300
721
- Served asset /prototype_nested_form.js - 200 OK (30ms)
80
+ Started GET "/assets/prototype.js" for 127.0.0.1 at 2012-10-28 17:13:42 +0300
81
+ Compiled prototype.js (1ms) (pid 9308)
82
+ Served asset /prototype.js - 200 OK (14ms)
722
83
 
723
84
 
724
- Started GET "/assets/prototype_events_test.js" for 127.0.0.1 at 2012-09-18 23:56:36 +0300
725
- Served asset /prototype_events_test.js - 200 OK (17ms)
85
+ Started GET "/assets/prototype_nested_form.js" for 127.0.0.1 at 2012-10-28 17:13:42 +0300
86
+ Compiled prototype_nested_form.js (0ms) (pid 9308)
87
+ Served asset /prototype_nested_form.js - 200 OK (12ms)
726
88
 
727
89
 
728
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-18 23:56:38 +0300
729
- Processing by ProjectsController#new as HTML
730
- Parameters: {"type"=>"prototype"}
731
- Rendered projects/new.html.erb within layouts/application (3.2ms)
732
- Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
90
+ Started GET "/assets/prototype_events_test.js" for 127.0.0.1 at 2012-10-28 17:13:42 +0300
91
+ Compiled prototype_events_test.js (0ms) (pid 9308)
92
+ Served asset /prototype_events_test.js - 200 OK (12ms)
733
93
 
734
94
 
735
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-18 23:56:41 +0300
95
+ Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-10-28 17:13:42 +0300
736
96
  Processing by ProjectsController#new as HTML
737
97
  Parameters: {"type"=>"prototype"}
738
98
  Rendered projects/new.html.erb within layouts/application (2.4ms)
739
- Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
740
-
741
-
742
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-18 23:56:42 +0300
743
- Processing by ProjectsController#new as HTML
744
- Parameters: {"type"=>"prototype"}
745
- Rendered projects/new.html.erb within layouts/application (2.5ms)
746
- Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
747
-
748
-
749
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-18 23:56:46 +0300
750
- Processing by ProjectsController#new as HTML
751
- Rendered projects/new.html.erb within layouts/application (2.8ms)
752
- Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
753
-
754
-
755
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-18 23:56:46 +0300
756
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
757
-
758
-
759
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-18 23:56:47 +0300
760
- Processing by ProjectsController#new as HTML
761
- Parameters: {"type"=>"prototype"}
762
- Rendered projects/new.html.erb within layouts/application (3.0ms)
763
- Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
764
-
765
-
766
- Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-09-18 23:56:47 +0300
767
- Processing by ProjectsController#without_intermediate_inputs as HTML
768
- Rendered projects/without_intermediate_inputs.html.erb within layouts/application (4.4ms)
769
- Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
770
-
771
-
772
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-18 23:56:47 +0300
773
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
99
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
774
100
 
775
101
 
776
- Started GET "/projects/new?type=jquery" for 127.0.0.1 at 2012-09-18 23:56:48 +0300
777
- Processing by ProjectsController#new as HTML
778
- Parameters: {"type"=>"jquery"}
779
- Rendered projects/new.html.erb within layouts/application (14.4ms)
780
- Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.0ms)
781
-
782
-
783
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-18 23:56:48 +0300
784
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
785
- Connecting to database specified by database.yml
786
-
787
-
788
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-19 09:05:46 +0300
789
- Processing by ProjectsController#new as HTML
790
- Rendered projects/new.html.erb within layouts/application (267.7ms)
791
- Completed 500 Internal Server Error in 322ms
792
-
793
-
794
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-19 09:06:00 +0300
795
- Processing by ProjectsController#new as HTML
796
- Rendered projects/new.html.erb within layouts/application (40.0ms)
797
- Completed 500 Internal Server Error in 49ms
798
-
799
-
800
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-19 09:06:03 +0300
801
- Processing by ProjectsController#new as HTML
802
- Rendered projects/new.html.erb within layouts/application (4.0ms)
803
- Completed 500 Internal Server Error in 6ms
804
-
805
-
806
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-19 09:06:06 +0300
807
- Processing by ProjectsController#new as HTML
808
- Rendered projects/new.html.erb within layouts/application (5.3ms)
809
- Completed 500 Internal Server Error in 6ms
810
-
811
-
812
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-19 09:06:08 +0300
813
- Processing by ProjectsController#new as HTML
814
- Parameters: {"type"=>"prototype"}
815
- Rendered projects/new.html.erb within layouts/application (3.8ms)
816
- Completed 500 Internal Server Error in 5ms
817
-
818
-
819
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-19 09:06:12 +0300
820
- Processing by ProjectsController#new as HTML
821
- Parameters: {"type"=>"prototype"}
822
- Rendered projects/new.html.erb within layouts/application (3.1ms)
823
- Completed 500 Internal Server Error in 4ms
824
-
825
-
826
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-19 09:06:15 +0300
102
+ Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-10-28 17:13:44 +0300
827
103
  Processing by ProjectsController#new as HTML
828
104
  Parameters: {"type"=>"prototype"}
829
105
  Rendered projects/new.html.erb within layouts/application (2.3ms)
830
- Completed 500 Internal Server Error in 3ms
106
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
831
107
 
832
108
 
833
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-19 09:06:21 +0300
109
+ Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-10-28 17:13:45 +0300
834
110
  Processing by ProjectsController#new as HTML
835
111
  Parameters: {"type"=>"prototype"}
836
- Rendered projects/new.html.erb within layouts/application (49.0ms)
837
- Completed 500 Internal Server Error in 50ms
112
+ Rendered projects/new.html.erb within layouts/application (1.8ms)
113
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
838
114
 
839
115
 
840
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-19 09:06:24 +0300
116
+ Started GET "/projects/new" for 127.0.0.1 at 2012-10-28 17:13:47 +0300
841
117
  Processing by ProjectsController#new as HTML
842
- Rendered projects/new.html.erb within layouts/application (7.4ms)
843
- Completed 500 Internal Server Error in 8ms
118
+ Rendered projects/new.html.erb within layouts/application (3.5ms)
119
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
844
120
 
845
121
 
846
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-19 09:06:26 +0300
122
+ Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-10-28 17:13:48 +0300
847
123
  Processing by ProjectsController#new as HTML
848
124
  Parameters: {"type"=>"prototype"}
849
- Rendered projects/new.html.erb within layouts/application (3.1ms)
850
- Completed 500 Internal Server Error in 4ms
125
+ Rendered projects/new.html.erb within layouts/application (3.5ms)
126
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
851
127
 
852
128
 
853
- Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-09-19 09:06:28 +0300
129
+ Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-10-28 17:13:48 +0300
854
130
  Processing by ProjectsController#without_intermediate_inputs as HTML
855
- Rendered projects/without_intermediate_inputs.html.erb within layouts/application (3.4ms)
856
- Completed 500 Internal Server Error in 6ms
131
+ Rendered projects/without_intermediate_inputs.html.erb within layouts/application (3.5ms)
132
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
857
133
 
858
134
 
859
- Started GET "/projects/new?type=jquery" for 127.0.0.1 at 2012-09-19 09:06:30 +0300
135
+ Started GET "/projects/new?type=jquery" for 127.0.0.1 at 2012-10-28 17:13:49 +0300
860
136
  Processing by ProjectsController#new as HTML
861
137
  Parameters: {"type"=>"jquery"}
862
- Rendered projects/new.html.erb within layouts/application (2.3ms)
863
- Completed 500 Internal Server Error in 3ms
138
+ Rendered projects/new.html.erb within layouts/application (2.1ms)
139
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
140
+ Connecting to database specified by database.yml
141
+ Connecting to database specified by database.yml
864
142
  Connecting to database specified by database.yml
865
143
 
866
144
 
867
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-19 09:06:51 +0300
145
+ Started GET "/projects/new" for 127.0.0.1 at 2012-10-30 00:31:31 +0300
868
146
  Processing by ProjectsController#new as HTML
869
- Rendered projects/new.html.erb within layouts/application (103.3ms)
870
- Completed 200 OK in 148ms (Views: 140.8ms | ActiveRecord: 0.8ms)
147
+ Rendered projects/new.html.erb within layouts/application (59.5ms)
148
+ Completed 200 OK in 119ms (Views: 114.4ms | ActiveRecord: 0.8ms)
871
149
 
872
150
 
873
- Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-19 09:06:51 +0300
874
- Served asset /jquery.js - 200 OK (32ms)
151
+ Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-30 00:31:32 +0300
152
+ Served asset /jquery.js - 200 OK (10ms)
875
153
 
876
154
 
877
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-19 09:06:51 +0300
878
- Served asset /jquery_nested_form.js - 200 OK (12ms)
155
+ Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-30 00:31:32 +0300
156
+ Served asset /jquery_nested_form.js - 200 OK (51ms)
879
157
 
880
158
 
881
- Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-19 09:06:51 +0300
882
- Served asset /jquery_events_test.js - 200 OK (13ms)
159
+ Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-30 00:31:32 +0300
160
+ Served asset /jquery_events_test.js - 200 OK (8ms)
883
161
 
884
162
 
885
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-19 09:06:53 +0300
163
+ Started GET "/projects/new" for 127.0.0.1 at 2012-10-30 00:31:32 +0300
886
164
  Processing by ProjectsController#new as HTML
887
- Rendered projects/new.html.erb within layouts/application (3.5ms)
888
- Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
165
+ Rendered projects/new.html.erb within layouts/application (5.9ms)
166
+ Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms)
889
167
 
890
168
 
891
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-19 09:06:56 +0300
169
+ Started GET "/projects/new" for 127.0.0.1 at 2012-10-30 00:31:34 +0300
892
170
  Processing by ProjectsController#new as HTML
893
- Rendered projects/new.html.erb within layouts/application (2.7ms)
894
- Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
171
+ Rendered projects/new.html.erb within layouts/application (2.3ms)
172
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
895
173
 
896
174
 
897
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-19 09:06:56 +0300
175
+ Started GET "/projects/new" for 127.0.0.1 at 2012-10-30 00:31:35 +0300
898
176
  Processing by ProjectsController#new as HTML
899
- Rendered projects/new.html.erb within layouts/application (3.6ms)
900
- Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
177
+ Rendered projects/new.html.erb within layouts/application (2.9ms)
178
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
901
179
 
902
180
 
903
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-19 09:07:05 +0300
181
+ Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-10-30 00:31:37 +0300
904
182
  Processing by ProjectsController#new as HTML
905
183
  Parameters: {"type"=>"prototype"}
906
- Rendered projects/new.html.erb within layouts/application (2.9ms)
907
- Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
184
+ Rendered projects/new.html.erb within layouts/application (2.2ms)
185
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
908
186
 
909
187
 
910
- Started GET "/assets/prototype_nested_form.js" for 127.0.0.1 at 2012-09-19 09:07:05 +0300
911
- Served asset /prototype_nested_form.js - 200 OK (23ms)
188
+ Started GET "/assets/prototype_nested_form.js" for 127.0.0.1 at 2012-10-30 00:31:37 +0300
189
+ Served asset /prototype_nested_form.js - 200 OK (5ms)
912
190
 
913
191
 
914
- Started GET "/assets/prototype.js" for 127.0.0.1 at 2012-09-19 09:07:05 +0300
915
- Served asset /prototype.js - 200 OK (35ms)
192
+ Started GET "/assets/prototype.js" for 127.0.0.1 at 2012-10-30 00:31:37 +0300
193
+ Served asset /prototype.js - 200 OK (4ms)
916
194
 
917
195
 
918
- Started GET "/assets/prototype_events_test.js" for 127.0.0.1 at 2012-09-19 09:07:05 +0300
919
- Served asset /prototype_events_test.js - 200 OK (28ms)
196
+ Started GET "/assets/prototype_events_test.js" for 127.0.0.1 at 2012-10-30 00:31:37 +0300
197
+ Served asset /prototype_events_test.js - 200 OK (3ms)
920
198
 
921
199
 
922
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-19 09:07:07 +0300
200
+ Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-10-30 00:31:37 +0300
923
201
  Processing by ProjectsController#new as HTML
924
202
  Parameters: {"type"=>"prototype"}
925
- Rendered projects/new.html.erb within layouts/application (3.5ms)
926
- Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
203
+ Rendered projects/new.html.erb within layouts/application (2.3ms)
204
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
927
205
 
928
206
 
929
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-19 09:07:12 +0300
207
+ Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-10-30 00:31:40 +0300
930
208
  Processing by ProjectsController#new as HTML
931
209
  Parameters: {"type"=>"prototype"}
932
- Rendered projects/new.html.erb within layouts/application (3.1ms)
933
- Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
210
+ Rendered projects/new.html.erb within layouts/application (2.1ms)
211
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
934
212
 
935
213
 
936
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-19 09:07:14 +0300
214
+ Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-10-30 00:31:40 +0300
937
215
  Processing by ProjectsController#new as HTML
938
216
  Parameters: {"type"=>"prototype"}
939
- Rendered projects/new.html.erb within layouts/application (3.0ms)
940
- Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
217
+ Rendered projects/new.html.erb within layouts/application (2.0ms)
218
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
941
219
 
942
220
 
943
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-19 09:07:17 +0300
221
+ Started GET "/projects/new" for 127.0.0.1 at 2012-10-30 00:31:43 +0300
944
222
  Processing by ProjectsController#new as HTML
945
- Rendered projects/new.html.erb within layouts/application (3.1ms)
946
- Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
223
+ Rendered projects/new.html.erb within layouts/application (2.3ms)
224
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
947
225
 
948
226
 
949
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-19 09:07:17 +0300
227
+ Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-10-30 00:31:43 +0300
950
228
  Processing by ProjectsController#new as HTML
951
229
  Parameters: {"type"=>"prototype"}
952
- Rendered projects/new.html.erb within layouts/application (3.3ms)
953
- Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
230
+ Rendered projects/new.html.erb within layouts/application (2.7ms)
231
+ Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
954
232
 
955
233
 
956
- Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-09-19 09:07:19 +0300
234
+ Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-10-30 00:31:44 +0300
957
235
  Processing by ProjectsController#without_intermediate_inputs as HTML
958
- Rendered projects/without_intermediate_inputs.html.erb within layouts/application (3.4ms)
959
- Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
236
+ Rendered projects/without_intermediate_inputs.html.erb within layouts/application (3.0ms)
237
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.0ms)
960
238
 
961
239
 
962
- Started GET "/projects/new?type=jquery" for 127.0.0.1 at 2012-09-19 09:07:19 +0300
240
+ Started GET "/projects/new?type=jquery" for 127.0.0.1 at 2012-10-30 00:31:44 +0300
963
241
  Processing by ProjectsController#new as HTML
964
242
  Parameters: {"type"=>"jquery"}
965
- Rendered projects/new.html.erb within layouts/application (4.9ms)
966
- Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
243
+ Rendered projects/new.html.erb within layouts/application (3.4ms)
244
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
967
245
  Connecting to database specified by database.yml
968
246
 
969
247
 
970
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-22 19:21:26 +0300
248
+ Started GET "/projects/new" for 127.0.0.1 at 2012-10-30 00:33:24 +0300
971
249
  Processing by ProjectsController#new as HTML
972
- Rendered projects/new.html.erb within layouts/application (343.6ms)
973
- Completed 200 OK in 593ms (Views: 562.3ms | ActiveRecord: 0.8ms)
250
+ Rendered projects/new.html.erb within layouts/application (37.9ms)
251
+ Completed 200 OK in 52ms (Views: 48.7ms | ActiveRecord: 0.7ms)
974
252
 
975
253
 
976
- Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-22 19:21:27 +0300
977
- Served asset /jquery.js - 200 OK (152ms)
254
+ Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-30 00:33:24 +0300
255
+ Served asset /jquery.js - 200 OK (9ms)
978
256
 
979
257
 
980
- Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-22 19:21:28 +0300
981
- Served asset /jquery_events_test.js - 200 OK (37ms)
258
+ Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-30 00:33:24 +0300
259
+ Served asset /jquery_events_test.js - 200 OK (3ms)
982
260
 
983
261
 
984
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-22 19:21:28 +0300
985
- Served asset /jquery_nested_form.js - 200 OK (146ms)
262
+ Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-30 00:33:24 +0300
263
+ Served asset /jquery_nested_form.js - 200 OK (3ms)
986
264
 
987
265
 
988
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-22 19:21:34 +0300
266
+ Started GET "/projects/new" for 127.0.0.1 at 2012-10-30 00:33:24 +0300
989
267
  Processing by ProjectsController#new as HTML
990
- Rendered projects/new.html.erb within layouts/application (3.9ms)
991
- Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
268
+ Rendered projects/new.html.erb within layouts/application (5.5ms)
269
+ Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.0ms)
992
270
 
993
271
 
994
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-22 19:21:39 +0300
272
+ Started GET "/projects/new" for 127.0.0.1 at 2012-10-30 00:33:27 +0300
995
273
  Processing by ProjectsController#new as HTML
996
- Rendered projects/new.html.erb within layouts/application (2.7ms)
997
- Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
274
+ Rendered projects/new.html.erb within layouts/application (3.6ms)
275
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
998
276
 
999
277
 
1000
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-22 19:21:40 +0300
278
+ Started GET "/projects/new" for 127.0.0.1 at 2012-10-30 00:33:27 +0300
1001
279
  Processing by ProjectsController#new as HTML
1002
- Rendered projects/new.html.erb within layouts/application (3.9ms)
1003
- Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
280
+ Rendered projects/new.html.erb within layouts/application (34.0ms)
281
+ Completed 200 OK in 36ms (Views: 35.6ms | ActiveRecord: 0.0ms)
1004
282
 
1005
283
 
1006
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-22 19:21:45 +0300
284
+ Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-10-30 00:33:30 +0300
1007
285
  Processing by ProjectsController#new as HTML
1008
286
  Parameters: {"type"=>"prototype"}
1009
- Rendered projects/new.html.erb within layouts/application (4.7ms)
1010
- Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
287
+ Rendered projects/new.html.erb within layouts/application (3.0ms)
288
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
1011
289
 
1012
290
 
1013
- Started GET "/assets/prototype.js" for 127.0.0.1 at 2012-09-22 19:21:46 +0300
1014
- Served asset /prototype.js - 200 OK (147ms)
291
+ Started GET "/assets/prototype.js" for 127.0.0.1 at 2012-10-30 00:33:30 +0300
292
+ Served asset /prototype.js - 200 OK (7ms)
1015
293
 
1016
294
 
1017
- Started GET "/assets/prototype_nested_form.js" for 127.0.0.1 at 2012-09-22 19:21:46 +0300
1018
- Served asset /prototype_nested_form.js - 200 OK (9ms)
295
+ Started GET "/assets/prototype_nested_form.js" for 127.0.0.1 at 2012-10-30 00:33:30 +0300
296
+ Served asset /prototype_nested_form.js - 200 OK (37ms)
1019
297
 
1020
298
 
1021
- Started GET "/assets/prototype_events_test.js" for 127.0.0.1 at 2012-09-22 19:21:46 +0300
1022
- Served asset /prototype_events_test.js - 200 OK (2ms)
299
+ Started GET "/assets/prototype_events_test.js" for 127.0.0.1 at 2012-10-30 00:33:30 +0300
300
+ Served asset /prototype_events_test.js - 200 OK (3ms)
1023
301
 
1024
302
 
1025
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-22 19:21:46 +0300
303
+ Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-10-30 00:33:30 +0300
1026
304
  Processing by ProjectsController#new as HTML
1027
305
  Parameters: {"type"=>"prototype"}
1028
- Rendered projects/new.html.erb within layouts/application (5.5ms)
1029
- Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms)
306
+ Rendered projects/new.html.erb within layouts/application (4.9ms)
307
+ Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
1030
308
 
1031
309
 
1032
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-22 19:21:49 +0300
310
+ Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-10-30 00:33:32 +0300
1033
311
  Processing by ProjectsController#new as HTML
1034
312
  Parameters: {"type"=>"prototype"}
1035
- Rendered projects/new.html.erb within layouts/application (3.8ms)
1036
- Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.0ms)
313
+ Rendered projects/new.html.erb within layouts/application (2.0ms)
314
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
1037
315
 
1038
316
 
1039
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-22 19:21:49 +0300
317
+ Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-10-30 00:33:33 +0300
1040
318
  Processing by ProjectsController#new as HTML
1041
319
  Parameters: {"type"=>"prototype"}
1042
- Rendered projects/new.html.erb within layouts/application (2.5ms)
1043
- Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
320
+ Rendered projects/new.html.erb within layouts/application (31.4ms)
321
+ Completed 200 OK in 33ms (Views: 32.7ms | ActiveRecord: 0.0ms)
1044
322
 
1045
323
 
1046
- Started GET "/projects/new" for 127.0.0.1 at 2012-09-22 19:21:52 +0300
324
+ Started GET "/projects/new" for 127.0.0.1 at 2012-10-30 00:33:35 +0300
1047
325
  Processing by ProjectsController#new as HTML
1048
- Rendered projects/new.html.erb within layouts/application (3.5ms)
1049
- Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
326
+ Rendered projects/new.html.erb within layouts/application (4.8ms)
327
+ Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
1050
328
 
1051
329
 
1052
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-09-22 19:21:52 +0300
330
+ Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-10-30 00:33:36 +0300
1053
331
  Processing by ProjectsController#new as HTML
1054
332
  Parameters: {"type"=>"prototype"}
1055
- Rendered projects/new.html.erb within layouts/application (3.1ms)
1056
- Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
333
+ Rendered projects/new.html.erb within layouts/application (2.4ms)
334
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
1057
335
 
1058
336
 
1059
- Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-09-22 19:21:53 +0300
337
+ Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-10-30 00:33:36 +0300
1060
338
  Processing by ProjectsController#without_intermediate_inputs as HTML
1061
- Rendered projects/without_intermediate_inputs.html.erb within layouts/application (3.4ms)
1062
- Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
339
+ Rendered projects/without_intermediate_inputs.html.erb within layouts/application (3.7ms)
340
+ Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
1063
341
 
1064
342
 
1065
- Started GET "/projects/new?type=jquery" for 127.0.0.1 at 2012-09-22 19:21:53 +0300
343
+ Started GET "/projects/new?type=jquery" for 127.0.0.1 at 2012-10-30 00:33:37 +0300
1066
344
  Processing by ProjectsController#new as HTML
1067
345
  Parameters: {"type"=>"jquery"}
1068
- Rendered projects/new.html.erb within layouts/application (3.4ms)
1069
- Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.0ms)
346
+ Rendered projects/new.html.erb within layouts/application (2.2ms)
347
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
348
+ Connecting to database specified by database.yml
349
+ Connecting to database specified by database.yml
350
+ Connecting to database specified by database.yml
351
+ Connecting to database specified by database.yml
352
+ Connecting to database specified by database.yml
353
+ Connecting to database specified by database.yml
354
+ Connecting to database specified by database.yml
355
+ Connecting to database specified by database.yml
356
+ Connecting to database specified by database.yml
357
+ Connecting to database specified by database.yml
358
+ Connecting to database specified by database.yml
359
+ Connecting to database specified by database.yml
360
+ Connecting to database specified by database.yml
361
+ Connecting to database specified by database.yml
1070
362
  Connecting to database specified by database.yml
1071
363
  Connecting to database specified by database.yml
1072
364
  Connecting to database specified by database.yml
@@ -1079,121 +371,3 @@ Connecting to database specified by database.yml
1079
371
  Connecting to database specified by database.yml
1080
372
  Connecting to database specified by database.yml
1081
373
  Connecting to database specified by database.yml
1082
-
1083
-
1084
- Started GET "/projects/new" for 127.0.0.1 at 2012-10-18 22:30:41 +0300
1085
- Processing by ProjectsController#new as HTML
1086
- Rendered projects/new.html.erb within layouts/application (275.2ms)
1087
- Completed 200 OK in 381ms (Views: 373.4ms | ActiveRecord: 1.0ms)
1088
-
1089
-
1090
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:30:42 +0300
1091
- Compiled jquery_nested_form.js (0ms) (pid 73826)
1092
- Served asset /jquery_nested_form.js - 200 OK (161ms)
1093
-
1094
-
1095
- Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:30:42 +0300
1096
- Compiled jquery.js (2ms) (pid 73826)
1097
- Served asset /jquery.js - 200 OK (382ms)
1098
-
1099
-
1100
- Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:30:42 +0300
1101
- Compiled jquery_events_test.js (0ms) (pid 73826)
1102
- Served asset /jquery_events_test.js - 200 OK (301ms)
1103
-
1104
-
1105
- Started GET "/projects/new" for 127.0.0.1 at 2012-10-18 22:30:43 +0300
1106
- Processing by ProjectsController#new as HTML
1107
- Rendered projects/new.html.erb within layouts/application (3.3ms)
1108
- Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
1109
-
1110
-
1111
- Started GET "/projects/new" for 127.0.0.1 at 2012-10-18 22:30:47 +0300
1112
- Processing by ProjectsController#new as HTML
1113
- Rendered projects/new.html.erb within layouts/application (3.1ms)
1114
- Completed 200 OK in 46ms (Views: 5.1ms | ActiveRecord: 0.0ms)
1115
-
1116
-
1117
- Started GET "/projects/new" for 127.0.0.1 at 2012-10-18 22:30:50 +0300
1118
- Processing by ProjectsController#new as HTML
1119
- Rendered projects/new.html.erb within layouts/application (2.5ms)
1120
- Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
1121
-
1122
-
1123
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-10-18 22:30:54 +0300
1124
- Processing by ProjectsController#new as HTML
1125
- Parameters: {"type"=>"prototype"}
1126
- Rendered projects/new.html.erb within layouts/application (3.7ms)
1127
- Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
1128
-
1129
-
1130
- Started GET "/assets/prototype_nested_form.js" for 127.0.0.1 at 2012-10-18 22:30:54 +0300
1131
- Compiled prototype_nested_form.js (0ms) (pid 73826)
1132
- Served asset /prototype_nested_form.js - 200 OK (56ms)
1133
-
1134
-
1135
- Started GET "/assets/prototype_events_test.js" for 127.0.0.1 at 2012-10-18 22:30:54 +0300
1136
- Served asset /prototype_events_test.js - 200 OK (11ms)
1137
-
1138
-
1139
- Started GET "/assets/prototype.js" for 127.0.0.1 at 2012-10-18 22:30:54 +0300
1140
- Served asset /prototype.js - 200 OK (31ms)
1141
-
1142
-
1143
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-10-18 22:30:56 +0300
1144
- Processing by ProjectsController#new as HTML
1145
- Parameters: {"type"=>"prototype"}
1146
- Rendered projects/new.html.erb within layouts/application (2.5ms)
1147
- Completed 200 OK in 4ms (Views: 4.3ms | ActiveRecord: 0.0ms)
1148
-
1149
-
1150
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-10-18 22:31:04 +0300
1151
- Processing by ProjectsController#new as HTML
1152
- Parameters: {"type"=>"prototype"}
1153
- Rendered projects/new.html.erb within layouts/application (5.4ms)
1154
- Completed 200 OK in 25ms (Views: 24.3ms | ActiveRecord: 0.0ms)
1155
-
1156
-
1157
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-10-18 22:31:04 +0300
1158
- Processing by ProjectsController#new as HTML
1159
- Parameters: {"type"=>"prototype"}
1160
- Rendered projects/new.html.erb within layouts/application (2.7ms)
1161
- Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
1162
-
1163
-
1164
- Started GET "/projects/new" for 127.0.0.1 at 2012-10-18 22:31:07 +0300
1165
- Processing by ProjectsController#new as HTML
1166
- Rendered projects/new.html.erb within layouts/application (3.6ms)
1167
- Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
1168
-
1169
-
1170
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:31:07 +0300
1171
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
1172
-
1173
-
1174
- Started GET "/projects/new?type=prototype" for 127.0.0.1 at 2012-10-18 22:31:08 +0300
1175
- Processing by ProjectsController#new as HTML
1176
- Parameters: {"type"=>"prototype"}
1177
- Rendered projects/new.html.erb within layouts/application (2.9ms)
1178
- Completed 200 OK in 47ms (Views: 46.5ms | ActiveRecord: 0.0ms)
1179
-
1180
-
1181
- Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-10-18 22:31:08 +0300
1182
- Processing by ProjectsController#without_intermediate_inputs as HTML
1183
- Rendered projects/without_intermediate_inputs.html.erb within layouts/application (6.7ms)
1184
- Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
1185
-
1186
-
1187
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:31:09 +0300
1188
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
1189
-
1190
-
1191
- Started GET "/projects/new?type=jquery" for 127.0.0.1 at 2012-10-18 22:31:09 +0300
1192
- Processing by ProjectsController#new as HTML
1193
- Parameters: {"type"=>"jquery"}
1194
- Rendered projects/new.html.erb within layouts/application (3.1ms)
1195
- Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
1196
-
1197
-
1198
- Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:31:09 +0300
1199
- Served asset /jquery_nested_form.js - 304 Not Modified (0ms)