strong_form 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/strong_form/nested_form.rb +33 -29
- data/lib/strong_form/railtie.rb +25 -24
- data/lib/strong_form/tag.rb +11 -6
- data/lib/strong_form/version.rb +1 -1
- data/spec/dummy/log/test.log +862 -0
- data/spec/examples.txt +48 -48
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 82f53b420bc975c8584fb569a392689859becd54
|
4
|
+
data.tar.gz: b31cbffcc7c257df3a7a7a9186b611577889394c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7abaa1c497d56fd47477830e5a8f592fc16567e040440e0983c57c08ddc5e9bc180b620d53a4d58b78c5b8f2b5510099d6fd696365f99530a715e822591762e4
|
7
|
+
data.tar.gz: 73773f063fef71ad8145bb700a169cd376042452bd0c5993daf2d7ab34e7329fa5e6d58c4ddee1ea90ebcbf7ba6eb13ed60fa615961801731502b6ca4d928712
|
data/CHANGELOG.md
CHANGED
@@ -1,41 +1,45 @@
|
|
1
|
-
module
|
2
|
-
module
|
3
|
-
|
4
|
-
alias_method :orig_link_to_remove, :link_to_remove
|
1
|
+
module StrongForm
|
2
|
+
module NestedForm
|
3
|
+
extend ActiveSupport::Concern
|
5
4
|
|
6
|
-
|
7
|
-
|
8
|
-
|
5
|
+
included do
|
6
|
+
alias_method :orig_link_to_add, :link_to_add
|
7
|
+
alias_method :orig_link_to_remove, :link_to_remove
|
9
8
|
|
10
|
-
|
11
|
-
|
9
|
+
def link_to_add(*args, &block)
|
10
|
+
options = args.extract_options!.symbolize_keys
|
11
|
+
association = args.pop
|
12
12
|
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
13
|
+
if object.respond_to?(:permitted_attributes)
|
14
|
+
return unless object.permitted_nested_attributes?(association)
|
15
|
+
|
16
|
+
unless options[:model_object]
|
17
|
+
reflection = object.class.reflect_on_association(association)
|
18
|
+
options[:model_object] = reflection.klass.new
|
19
|
+
end
|
17
20
|
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
21
|
+
unless options[:model_object].permitted_attributes.present?
|
22
|
+
if object.permitted_attributes == true || object.permitted_attributes.nil?
|
23
|
+
options[:model_object].permitted_attributes = true
|
24
|
+
else
|
25
|
+
options[:model_object].permitted_attributes =
|
26
|
+
StrongForm::Finder.find_child_permitted_attributes(
|
27
|
+
"#{association}_attributes".to_sym, object.permitted_attributes
|
25
28
|
)
|
29
|
+
end
|
26
30
|
end
|
27
31
|
end
|
28
|
-
end
|
29
32
|
|
30
|
-
|
31
|
-
|
33
|
+
orig_link_to_add(*args, association, options, &block)
|
34
|
+
end
|
32
35
|
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
36
|
+
def link_to_remove(*args, &block)
|
37
|
+
return if object.respond_to?(:permitted_attributes) &&
|
38
|
+
!object.permitted_attributes.nil? &&
|
39
|
+
object.permitted_attributes != true &&
|
40
|
+
!object.permitted_attributes.include?(:_destroy)
|
41
|
+
orig_link_to_remove(*args, &block)
|
42
|
+
end
|
39
43
|
end
|
40
44
|
end
|
41
45
|
end
|
data/lib/strong_form/railtie.rb
CHANGED
@@ -1,31 +1,32 @@
|
|
1
1
|
module StrongForm
|
2
|
-
def self.inject
|
3
|
-
ActiveRecord::Base.include StrongForm::Record
|
4
|
-
|
5
|
-
%w(
|
6
|
-
CheckBox
|
7
|
-
CollectionSelect
|
8
|
-
DateSelect
|
9
|
-
RadioButton
|
10
|
-
Select
|
11
|
-
TextArea
|
12
|
-
TextField
|
13
|
-
TimeZoneSelect
|
14
|
-
).each do |klass|
|
15
|
-
"ActionView::Helpers::Tags::#{klass}"
|
16
|
-
.constantize.prepend StrongForm::Tag
|
17
|
-
end
|
18
|
-
|
19
|
-
defined?(NestedForm) && require('strong_form/nested_form')
|
20
|
-
end
|
21
|
-
|
22
2
|
class Railtie < Rails::Railtie
|
23
3
|
initializer 'strong_form.injects' do
|
24
|
-
|
25
|
-
StrongForm
|
26
|
-
else
|
27
|
-
ActionDispatch::Reloader.to_prepare { StrongForm.inject }
|
4
|
+
ActiveSupport.on_load(:active_record) do
|
5
|
+
ActiveRecord::Base.include StrongForm::Record
|
28
6
|
end
|
7
|
+
|
8
|
+
ActiveSupport.on_load(:action_view) do
|
9
|
+
%w(
|
10
|
+
CheckBox
|
11
|
+
CollectionSelect
|
12
|
+
DateSelect
|
13
|
+
RadioButton
|
14
|
+
Select
|
15
|
+
TextArea
|
16
|
+
TextField
|
17
|
+
TimeZoneSelect
|
18
|
+
).each do |klass|
|
19
|
+
"ActionView::Helpers::Tags::#{klass}"
|
20
|
+
.constantize.include StrongForm::Tag
|
21
|
+
end
|
22
|
+
|
23
|
+
if defined?(::NestedForm)
|
24
|
+
require('strong_form/nested_form')
|
25
|
+
require('nested_form/builder_mixin')
|
26
|
+
::NestedForm::BuilderMixin.include StrongForm::NestedForm
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
29
30
|
end
|
30
31
|
end
|
31
32
|
end
|
data/lib/strong_form/tag.rb
CHANGED
@@ -1,12 +1,17 @@
|
|
1
1
|
module StrongForm
|
2
2
|
module Tag
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
3
|
+
extend ActiveSupport::Concern
|
4
|
+
included do
|
5
|
+
alias_method :render_orig, :render
|
6
|
+
|
7
|
+
def render
|
8
|
+
if object.respond_to?(:permitted_attributes) && !object.permitted_attributes.nil?
|
9
|
+
(@html_options || @options)[:disabled] ||=
|
10
|
+
object.permitted_attributes != true &&
|
11
|
+
!object.permitted_attributes.include?(@method_name.to_sym)
|
12
|
+
end
|
13
|
+
render_orig
|
8
14
|
end
|
9
|
-
super
|
10
15
|
end
|
11
16
|
end
|
12
17
|
end
|
data/lib/strong_form/version.rb
CHANGED
data/spec/dummy/log/test.log
CHANGED
@@ -22389,3 +22389,865 @@ Processing by BaseController#nested_form_gem as HTML
|
|
22389
22389
|
Rendered base/nested_form_gem.html.haml within layouts/application (2.9ms)
|
22390
22390
|
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
22391
22391
|
[1m[35m (0.0ms)[0m rollback transaction
|
22392
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
22393
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "street" varchar, "city" varchar, "country" varchar, "description" text, "user_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
22394
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" text, "taggable_id" integer, "taggable_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
22395
|
+
[1m[36m (0.6ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar, "last_name" varchar, "gender" varchar, "description" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
22396
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
22397
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
22398
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
22399
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
22400
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150626132542')
|
22401
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20150626095843')[0m
|
22402
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150626104120')
|
22403
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
22404
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22405
|
+
Started GET "/basic_form" for 127.0.0.1 at 2015-07-09 19:47:43 +0200
|
22406
|
+
Processing by BaseController#basic_form as HTML
|
22407
|
+
Rendered base/_user_fields.html.haml (2.8ms)
|
22408
|
+
Rendered base/basic_form.html.haml within layouts/application (8.6ms)
|
22409
|
+
Completed 200 OK in 133ms (Views: 123.3ms | ActiveRecord: 0.3ms)
|
22410
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22411
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22412
|
+
Started GET "/basic_form" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22413
|
+
Processing by BaseController#basic_form as HTML
|
22414
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22415
|
+
Rendered base/basic_form.html.haml within layouts/application (0.9ms)
|
22416
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
22417
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22418
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22419
|
+
Started GET "/basic_form" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22420
|
+
Processing by BaseController#basic_form as HTML
|
22421
|
+
Rendered base/_user_fields.html.haml (0.5ms)
|
22422
|
+
Rendered base/basic_form.html.haml within layouts/application (1.0ms)
|
22423
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
22424
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22425
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22426
|
+
Started GET "/basic_form" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22427
|
+
Processing by BaseController#basic_form as HTML
|
22428
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22429
|
+
Rendered base/basic_form.html.haml within layouts/application (0.9ms)
|
22430
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
22431
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22432
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22433
|
+
Started GET "/basic_form" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22434
|
+
Processing by BaseController#basic_form as HTML
|
22435
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22436
|
+
Rendered base/basic_form.html.haml within layouts/application (1.0ms)
|
22437
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
22438
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22439
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22440
|
+
Started GET "/basic_form" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22441
|
+
Processing by BaseController#basic_form as HTML
|
22442
|
+
Rendered base/_user_fields.html.haml (0.3ms)
|
22443
|
+
Rendered base/basic_form.html.haml within layouts/application (0.9ms)
|
22444
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
22445
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22446
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22447
|
+
Started GET "/basic_form" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22448
|
+
Processing by BaseController#basic_form as HTML
|
22449
|
+
Rendered base/_user_fields.html.haml (0.5ms)
|
22450
|
+
Rendered base/basic_form.html.haml within layouts/application (1.0ms)
|
22451
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
22452
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22453
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22454
|
+
Started GET "/basic_form" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22455
|
+
Processing by BaseController#basic_form as HTML
|
22456
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22457
|
+
Rendered base/basic_form.html.haml within layouts/application (0.9ms)
|
22458
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
22459
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22460
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22461
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22462
|
+
Processing by BaseController#fields_for as HTML
|
22463
|
+
Rendered base/_user_fields.html.haml (0.5ms)
|
22464
|
+
Rendered base/_address_fields.html.haml (2.3ms)
|
22465
|
+
Rendered base/_tag_fields.html.haml (0.9ms)
|
22466
|
+
Rendered base/fields_for.html.haml within layouts/application (8.6ms)
|
22467
|
+
Completed 200 OK in 35ms (Views: 11.3ms | ActiveRecord: 0.4ms)
|
22468
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22469
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22470
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22471
|
+
Processing by BaseController#fields_for as HTML
|
22472
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22473
|
+
Rendered base/_address_fields.html.haml (0.5ms)
|
22474
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
22475
|
+
Rendered base/fields_for.html.haml within layouts/application (2.4ms)
|
22476
|
+
Completed 200 OK in 5ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
22477
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22478
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22479
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22480
|
+
Processing by BaseController#fields_for as HTML
|
22481
|
+
Rendered base/_user_fields.html.haml (0.3ms)
|
22482
|
+
Rendered base/_address_fields.html.haml (0.5ms)
|
22483
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
22484
|
+
Rendered base/fields_for.html.haml within layouts/application (2.1ms)
|
22485
|
+
Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
22486
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22487
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22488
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22489
|
+
Processing by BaseController#fields_for as HTML
|
22490
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22491
|
+
Rendered base/_address_fields.html.haml (0.5ms)
|
22492
|
+
Rendered base/_tag_fields.html.haml (0.3ms)
|
22493
|
+
Rendered base/fields_for.html.haml within layouts/application (2.7ms)
|
22494
|
+
Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
22495
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22496
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22497
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22498
|
+
Processing by BaseController#fields_for as HTML
|
22499
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22500
|
+
Rendered base/_address_fields.html.haml (0.5ms)
|
22501
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
22502
|
+
Rendered base/fields_for.html.haml within layouts/application (2.5ms)
|
22503
|
+
Completed 200 OK in 5ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
22504
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22505
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22506
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22507
|
+
Processing by BaseController#fields_for as HTML
|
22508
|
+
Rendered base/_user_fields.html.haml (0.3ms)
|
22509
|
+
Rendered base/_address_fields.html.haml (0.4ms)
|
22510
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
22511
|
+
Rendered base/fields_for.html.haml within layouts/application (2.0ms)
|
22512
|
+
Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
22513
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22514
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22515
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22516
|
+
Processing by BaseController#fields_for as HTML
|
22517
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22518
|
+
Rendered base/_address_fields.html.haml (0.7ms)
|
22519
|
+
Rendered base/_tag_fields.html.haml (0.3ms)
|
22520
|
+
Rendered base/fields_for.html.haml within layouts/application (2.6ms)
|
22521
|
+
Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
22522
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22523
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22524
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22525
|
+
Processing by BaseController#fields_for as HTML
|
22526
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22527
|
+
Rendered base/_address_fields.html.haml (0.5ms)
|
22528
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
22529
|
+
Rendered base/fields_for.html.haml within layouts/application (2.4ms)
|
22530
|
+
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
22531
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22532
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22533
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22534
|
+
Processing by BaseController#fields_for as HTML
|
22535
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22536
|
+
Rendered base/_address_fields.html.haml (0.4ms)
|
22537
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
22538
|
+
Rendered base/fields_for.html.haml within layouts/application (2.1ms)
|
22539
|
+
Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
22540
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22541
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22542
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22543
|
+
Processing by BaseController#fields_for as HTML
|
22544
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22545
|
+
Rendered base/_address_fields.html.haml (0.5ms)
|
22546
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
22547
|
+
Rendered base/fields_for.html.haml within layouts/application (2.3ms)
|
22548
|
+
Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
22549
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22550
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22551
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22552
|
+
Processing by BaseController#fields_for as HTML
|
22553
|
+
Rendered base/_user_fields.html.haml (0.5ms)
|
22554
|
+
Rendered base/_address_fields.html.haml (0.6ms)
|
22555
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
22556
|
+
Rendered base/fields_for.html.haml within layouts/application (3.1ms)
|
22557
|
+
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
22558
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22559
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22560
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22561
|
+
Processing by BaseController#fields_for as HTML
|
22562
|
+
Rendered base/_user_fields.html.haml (0.3ms)
|
22563
|
+
Rendered base/_address_fields.html.haml (0.4ms)
|
22564
|
+
Rendered base/_tag_fields.html.haml (21.2ms)
|
22565
|
+
Rendered base/fields_for.html.haml within layouts/application (23.1ms)
|
22566
|
+
Completed 200 OK in 26ms (Views: 24.9ms | ActiveRecord: 0.0ms)
|
22567
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22568
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22569
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22570
|
+
Processing by BaseController#fields_for as HTML
|
22571
|
+
Rendered base/_user_fields.html.haml (0.5ms)
|
22572
|
+
Rendered base/_address_fields.html.haml (0.8ms)
|
22573
|
+
Rendered base/_tag_fields.html.haml (0.3ms)
|
22574
|
+
Rendered base/fields_for.html.haml within layouts/application (3.0ms)
|
22575
|
+
Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
22576
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22577
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22578
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22579
|
+
Processing by BaseController#fields_for as HTML
|
22580
|
+
Rendered base/_user_fields.html.haml (0.5ms)
|
22581
|
+
Rendered base/_address_fields.html.haml (0.7ms)
|
22582
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
22583
|
+
Rendered base/fields_for.html.haml within layouts/application (3.1ms)
|
22584
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
22585
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22586
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22587
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22588
|
+
Processing by BaseController#fields_for as HTML
|
22589
|
+
Rendered base/_user_fields.html.haml (0.5ms)
|
22590
|
+
Rendered base/_address_fields.html.haml (0.6ms)
|
22591
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
22592
|
+
Rendered base/fields_for.html.haml within layouts/application (2.5ms)
|
22593
|
+
Completed 200 OK in 5ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
22594
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22595
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22596
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22597
|
+
Processing by BaseController#fields_for as HTML
|
22598
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22599
|
+
Rendered base/_address_fields.html.haml (0.7ms)
|
22600
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
22601
|
+
Rendered base/fields_for.html.haml within layouts/application (2.8ms)
|
22602
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
22603
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22604
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22605
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22606
|
+
Processing by BaseController#fields_for as HTML
|
22607
|
+
Rendered base/_user_fields.html.haml (0.7ms)
|
22608
|
+
Rendered base/_address_fields.html.haml (0.9ms)
|
22609
|
+
Rendered base/_tag_fields.html.haml (0.4ms)
|
22610
|
+
Rendered base/fields_for.html.haml within layouts/application (3.4ms)
|
22611
|
+
Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.0ms)
|
22612
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22613
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22614
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22615
|
+
Processing by BaseController#fields_for as HTML
|
22616
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22617
|
+
Rendered base/_address_fields.html.haml (0.8ms)
|
22618
|
+
Rendered base/_tag_fields.html.haml (0.3ms)
|
22619
|
+
Rendered base/fields_for.html.haml within layouts/application (3.1ms)
|
22620
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
22621
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22622
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22623
|
+
Started GET "/deep_fields_for" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22624
|
+
Processing by BaseController#deep_fields_for as HTML
|
22625
|
+
Rendered base/_user_fields.html.haml (0.5ms)
|
22626
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
22627
|
+
Rendered base/_address_fields.html.haml (0.8ms)
|
22628
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
22629
|
+
Rendered base/deep_fields_for.html.haml within layouts/application (3.9ms)
|
22630
|
+
Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.0ms)
|
22631
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22632
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22633
|
+
Started GET "/deep_fields_for" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22634
|
+
Processing by BaseController#deep_fields_for as HTML
|
22635
|
+
Rendered base/_user_fields.html.haml (0.5ms)
|
22636
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
22637
|
+
Rendered base/_address_fields.html.haml (0.8ms)
|
22638
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
22639
|
+
Rendered base/deep_fields_for.html.haml within layouts/application (2.7ms)
|
22640
|
+
Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
22641
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22642
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22643
|
+
Started GET "/deep_fields_for" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22644
|
+
Processing by BaseController#deep_fields_for as HTML
|
22645
|
+
Rendered base/_user_fields.html.haml (0.6ms)
|
22646
|
+
Rendered base/_tag_fields.html.haml (0.3ms)
|
22647
|
+
Rendered base/_address_fields.html.haml (1.0ms)
|
22648
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
22649
|
+
Rendered base/deep_fields_for.html.haml within layouts/application (3.3ms)
|
22650
|
+
Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.0ms)
|
22651
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22652
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
22653
|
+
Started GET "/deep_fields_for" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22654
|
+
Processing by BaseController#deep_fields_for as HTML
|
22655
|
+
Rendered base/_user_fields.html.haml (0.8ms)
|
22656
|
+
Rendered base/_tag_fields.html.haml (0.5ms)
|
22657
|
+
Rendered base/_address_fields.html.haml (1.1ms)
|
22658
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
22659
|
+
Rendered base/deep_fields_for.html.haml within layouts/application (3.4ms)
|
22660
|
+
Completed 200 OK in 7ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
22661
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22662
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
22663
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22664
|
+
Processing by BaseController#nested_form_gem as HTML
|
22665
|
+
Rendered base/_user_fields.html.haml (0.7ms)
|
22666
|
+
Rendered base/_address_fields.html.haml (2.4ms)
|
22667
|
+
Rendered base/_address_fields.html.haml (0.7ms)
|
22668
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (7.6ms)
|
22669
|
+
Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.0ms)
|
22670
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22671
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22672
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22673
|
+
Processing by BaseController#nested_form_gem as HTML
|
22674
|
+
Rendered base/_user_fields.html.haml (0.8ms)
|
22675
|
+
Rendered base/_address_fields.html.haml (2.0ms)
|
22676
|
+
Rendered base/_address_fields.html.haml (1.4ms)
|
22677
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (7.0ms)
|
22678
|
+
Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.0ms)
|
22679
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22680
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22681
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22682
|
+
Processing by BaseController#nested_form_gem as HTML
|
22683
|
+
Rendered base/_user_fields.html.haml (1.4ms)
|
22684
|
+
Rendered base/_address_fields.html.haml (1.6ms)
|
22685
|
+
Rendered base/_address_fields.html.haml (1.0ms)
|
22686
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (7.1ms)
|
22687
|
+
Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.0ms)
|
22688
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22689
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22690
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22691
|
+
Processing by BaseController#nested_form_gem as HTML
|
22692
|
+
Rendered base/_user_fields.html.haml (0.7ms)
|
22693
|
+
Rendered base/_address_fields.html.haml (1.4ms)
|
22694
|
+
Rendered base/_address_fields.html.haml (1.1ms)
|
22695
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (5.6ms)
|
22696
|
+
Completed 200 OK in 13ms (Views: 7.1ms | ActiveRecord: 0.0ms)
|
22697
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22698
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22699
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22700
|
+
Processing by BaseController#nested_form_gem as HTML
|
22701
|
+
Rendered base/_user_fields.html.haml (0.5ms)
|
22702
|
+
Rendered base/_address_fields.html.haml (1.0ms)
|
22703
|
+
Rendered base/_address_fields.html.haml (1.0ms)
|
22704
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (5.5ms)
|
22705
|
+
Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
22706
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22707
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22708
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22709
|
+
Processing by BaseController#nested_form_gem as HTML
|
22710
|
+
Rendered base/_user_fields.html.haml (0.6ms)
|
22711
|
+
Rendered base/_address_fields.html.haml (0.8ms)
|
22712
|
+
Rendered base/_address_fields.html.haml (2.0ms)
|
22713
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (5.4ms)
|
22714
|
+
Completed 200 OK in 9ms (Views: 7.9ms | ActiveRecord: 0.0ms)
|
22715
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22716
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22717
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22718
|
+
Processing by BaseController#nested_form_gem as HTML
|
22719
|
+
Rendered base/_user_fields.html.haml (0.7ms)
|
22720
|
+
Rendered base/_address_fields.html.haml (1.1ms)
|
22721
|
+
Rendered base/_address_fields.html.haml (1.1ms)
|
22722
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (5.6ms)
|
22723
|
+
Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
|
22724
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22725
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22726
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22727
|
+
Processing by BaseController#nested_form_gem as HTML
|
22728
|
+
Rendered base/_user_fields.html.haml (0.8ms)
|
22729
|
+
Rendered base/_address_fields.html.haml (1.2ms)
|
22730
|
+
Rendered base/_address_fields.html.haml (1.1ms)
|
22731
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (5.0ms)
|
22732
|
+
Completed 200 OK in 8ms (Views: 6.4ms | ActiveRecord: 0.0ms)
|
22733
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
22734
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22735
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22736
|
+
Processing by BaseController#nested_form_gem as HTML
|
22737
|
+
Rendered base/_user_fields.html.haml (0.5ms)
|
22738
|
+
Rendered base/_address_fields.html.haml (1.0ms)
|
22739
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (3.1ms)
|
22740
|
+
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
22741
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22742
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22743
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22744
|
+
Processing by BaseController#nested_form_gem as HTML
|
22745
|
+
Rendered base/_user_fields.html.haml (0.3ms)
|
22746
|
+
Rendered base/_address_fields.html.haml (1.2ms)
|
22747
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (3.4ms)
|
22748
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
22749
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22750
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22751
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22752
|
+
Processing by BaseController#nested_form_gem as HTML
|
22753
|
+
Rendered base/_user_fields.html.haml (0.8ms)
|
22754
|
+
Rendered base/_address_fields.html.haml (0.9ms)
|
22755
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (3.0ms)
|
22756
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
22757
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22758
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22759
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22760
|
+
Processing by BaseController#nested_form_gem as HTML
|
22761
|
+
Rendered base/_user_fields.html.haml (0.5ms)
|
22762
|
+
Rendered base/_address_fields.html.haml (0.7ms)
|
22763
|
+
Rendered base/_address_fields.html.haml (0.7ms)
|
22764
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (3.6ms)
|
22765
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
|
22766
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22767
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22768
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22769
|
+
Processing by BaseController#nested_form_gem as HTML
|
22770
|
+
Rendered base/_user_fields.html.haml (0.5ms)
|
22771
|
+
Rendered base/_address_fields.html.haml (0.9ms)
|
22772
|
+
Rendered base/_address_fields.html.haml (0.9ms)
|
22773
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (4.0ms)
|
22774
|
+
Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms)
|
22775
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22776
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22777
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22778
|
+
Processing by BaseController#nested_form_gem as HTML
|
22779
|
+
Rendered base/_user_fields.html.haml (0.9ms)
|
22780
|
+
Rendered base/_address_fields.html.haml (1.3ms)
|
22781
|
+
Rendered base/_address_fields.html.haml (0.9ms)
|
22782
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (5.2ms)
|
22783
|
+
Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
|
22784
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22785
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22786
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22787
|
+
Processing by BaseController#nested_form_gem as HTML
|
22788
|
+
Rendered base/_user_fields.html.haml (0.6ms)
|
22789
|
+
Rendered base/_address_fields.html.haml (1.0ms)
|
22790
|
+
Rendered base/_address_fields.html.haml (0.9ms)
|
22791
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (4.5ms)
|
22792
|
+
Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
|
22793
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22794
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22795
|
+
Started GET "/nested_form_gem?inline_link_to_add=true" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22796
|
+
Processing by BaseController#nested_form_gem as HTML
|
22797
|
+
Parameters: {"inline_link_to_add"=>"true"}
|
22798
|
+
Rendered base/_user_fields.html.haml (0.3ms)
|
22799
|
+
Rendered base/_address_fields.html.haml (0.6ms)
|
22800
|
+
Rendered base/_address_fields.html.haml (0.6ms)
|
22801
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (2.9ms)
|
22802
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
22803
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22804
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22805
|
+
Started GET "/nested_form_gem?inline_link_to_add=true" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22806
|
+
Processing by BaseController#nested_form_gem as HTML
|
22807
|
+
Parameters: {"inline_link_to_add"=>"true"}
|
22808
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22809
|
+
Rendered base/_address_fields.html.haml (0.7ms)
|
22810
|
+
Rendered base/_address_fields.html.haml (0.6ms)
|
22811
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (3.4ms)
|
22812
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
|
22813
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22814
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22815
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:47:44 +0200
|
22816
|
+
Processing by BaseController#nested_form_gem as HTML
|
22817
|
+
Rendered base/_user_fields.html.haml (0.3ms)
|
22818
|
+
Rendered base/_address_fields.html.haml (0.5ms)
|
22819
|
+
Rendered base/_address_fields.html.haml (0.5ms)
|
22820
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (2.7ms)
|
22821
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
22822
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22823
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
22824
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "street" varchar, "city" varchar, "country" varchar, "description" text, "user_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
22825
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" text, "taggable_id" integer, "taggable_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
22826
|
+
[1m[36m (0.6ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar, "last_name" varchar, "gender" varchar, "description" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
22827
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
22828
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
22829
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
22830
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
22831
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150626132542')
|
22832
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20150626095843')[0m
|
22833
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150626104120')
|
22834
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
22835
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22836
|
+
Started GET "/deep_fields_for" for 127.0.0.1 at 2015-07-09 19:48:54 +0200
|
22837
|
+
Processing by BaseController#deep_fields_for as HTML
|
22838
|
+
Rendered base/_user_fields.html.haml (2.3ms)
|
22839
|
+
Rendered base/_tag_fields.html.haml (0.8ms)
|
22840
|
+
Rendered base/_address_fields.html.haml (2.9ms)
|
22841
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
22842
|
+
Rendered base/deep_fields_for.html.haml within layouts/application (11.6ms)
|
22843
|
+
Completed 200 OK in 138ms (Views: 110.1ms | ActiveRecord: 0.4ms)
|
22844
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22845
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22846
|
+
Started GET "/deep_fields_for" for 127.0.0.1 at 2015-07-09 19:48:54 +0200
|
22847
|
+
Processing by BaseController#deep_fields_for as HTML
|
22848
|
+
Rendered base/_user_fields.html.haml (0.3ms)
|
22849
|
+
Rendered base/_tag_fields.html.haml (0.1ms)
|
22850
|
+
Rendered base/_address_fields.html.haml (0.5ms)
|
22851
|
+
Rendered base/_tag_fields.html.haml (0.1ms)
|
22852
|
+
Rendered base/deep_fields_for.html.haml within layouts/application (2.1ms)
|
22853
|
+
Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
22854
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22855
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22856
|
+
Started GET "/deep_fields_for" for 127.0.0.1 at 2015-07-09 19:48:54 +0200
|
22857
|
+
Processing by BaseController#deep_fields_for as HTML
|
22858
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22859
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
22860
|
+
Rendered base/_address_fields.html.haml (0.6ms)
|
22861
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
22862
|
+
Rendered base/deep_fields_for.html.haml within layouts/application (2.3ms)
|
22863
|
+
Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
22864
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22865
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22866
|
+
Started GET "/deep_fields_for" for 127.0.0.1 at 2015-07-09 19:48:54 +0200
|
22867
|
+
Processing by BaseController#deep_fields_for as HTML
|
22868
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22869
|
+
Rendered base/_tag_fields.html.haml (0.1ms)
|
22870
|
+
Rendered base/_address_fields.html.haml (0.6ms)
|
22871
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
22872
|
+
Rendered base/deep_fields_for.html.haml within layouts/application (2.2ms)
|
22873
|
+
Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
22874
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22875
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22876
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:48:54 +0200
|
22877
|
+
Processing by BaseController#nested_form_gem as HTML
|
22878
|
+
Rendered base/_user_fields.html.haml (0.3ms)
|
22879
|
+
Rendered base/_address_fields.html.haml (1.2ms)
|
22880
|
+
Rendered base/_address_fields.html.haml (0.5ms)
|
22881
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (4.3ms)
|
22882
|
+
Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.0ms)
|
22883
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22884
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22885
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:48:54 +0200
|
22886
|
+
Processing by BaseController#nested_form_gem as HTML
|
22887
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22888
|
+
Rendered base/_address_fields.html.haml (0.5ms)
|
22889
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (1.9ms)
|
22890
|
+
Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
22891
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22892
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22893
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:48:54 +0200
|
22894
|
+
Processing by BaseController#nested_form_gem as HTML
|
22895
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22896
|
+
Rendered base/_address_fields.html.haml (0.6ms)
|
22897
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (2.1ms)
|
22898
|
+
Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
22899
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22900
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22901
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:48:54 +0200
|
22902
|
+
Processing by BaseController#nested_form_gem as HTML
|
22903
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22904
|
+
Rendered base/_address_fields.html.haml (0.6ms)
|
22905
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (2.0ms)
|
22906
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
22907
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22908
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22909
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:48:54 +0200
|
22910
|
+
Processing by BaseController#nested_form_gem as HTML
|
22911
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22912
|
+
Rendered base/_address_fields.html.haml (0.8ms)
|
22913
|
+
Rendered base/_address_fields.html.haml (0.8ms)
|
22914
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (3.7ms)
|
22915
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
22916
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22917
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22918
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:48:54 +0200
|
22919
|
+
Processing by BaseController#nested_form_gem as HTML
|
22920
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22921
|
+
Rendered base/_address_fields.html.haml (0.6ms)
|
22922
|
+
Rendered base/_address_fields.html.haml (0.5ms)
|
22923
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (2.9ms)
|
22924
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
22925
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22926
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22927
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:48:54 +0200
|
22928
|
+
Processing by BaseController#nested_form_gem as HTML
|
22929
|
+
Rendered base/_user_fields.html.haml (0.3ms)
|
22930
|
+
Rendered base/_address_fields.html.haml (0.6ms)
|
22931
|
+
Rendered base/_address_fields.html.haml (0.7ms)
|
22932
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (3.0ms)
|
22933
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
22934
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22935
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22936
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:48:54 +0200
|
22937
|
+
Processing by BaseController#nested_form_gem as HTML
|
22938
|
+
Rendered base/_user_fields.html.haml (0.3ms)
|
22939
|
+
Rendered base/_address_fields.html.haml (0.6ms)
|
22940
|
+
Rendered base/_address_fields.html.haml (0.5ms)
|
22941
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (2.8ms)
|
22942
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
22943
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22944
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22945
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:48:54 +0200
|
22946
|
+
Processing by BaseController#nested_form_gem as HTML
|
22947
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22948
|
+
Rendered base/_address_fields.html.haml (0.6ms)
|
22949
|
+
Rendered base/_address_fields.html.haml (0.5ms)
|
22950
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (2.9ms)
|
22951
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
22952
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22953
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22954
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:48:54 +0200
|
22955
|
+
Processing by BaseController#nested_form_gem as HTML
|
22956
|
+
Rendered base/_user_fields.html.haml (0.5ms)
|
22957
|
+
Rendered base/_address_fields.html.haml (0.9ms)
|
22958
|
+
Rendered base/_address_fields.html.haml (0.6ms)
|
22959
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (4.2ms)
|
22960
|
+
Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.0ms)
|
22961
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22962
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22963
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:48:54 +0200
|
22964
|
+
Processing by BaseController#nested_form_gem as HTML
|
22965
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22966
|
+
Rendered base/_address_fields.html.haml (0.9ms)
|
22967
|
+
Rendered base/_address_fields.html.haml (0.8ms)
|
22968
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (4.5ms)
|
22969
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
22970
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22971
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22972
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
22973
|
+
Processing by BaseController#nested_form_gem as HTML
|
22974
|
+
Rendered base/_user_fields.html.haml (0.6ms)
|
22975
|
+
Rendered base/_address_fields.html.haml (0.6ms)
|
22976
|
+
Rendered base/_address_fields.html.haml (0.5ms)
|
22977
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (3.4ms)
|
22978
|
+
Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms)
|
22979
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22980
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22981
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
22982
|
+
Processing by BaseController#nested_form_gem as HTML
|
22983
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22984
|
+
Rendered base/_address_fields.html.haml (0.7ms)
|
22985
|
+
Rendered base/_address_fields.html.haml (0.7ms)
|
22986
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (3.5ms)
|
22987
|
+
Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
|
22988
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22989
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22990
|
+
Started GET "/nested_form_gem?inline_link_to_add=true" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
22991
|
+
Processing by BaseController#nested_form_gem as HTML
|
22992
|
+
Parameters: {"inline_link_to_add"=>"true"}
|
22993
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
22994
|
+
Rendered base/_address_fields.html.haml (0.7ms)
|
22995
|
+
Rendered base/_address_fields.html.haml (0.7ms)
|
22996
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (3.3ms)
|
22997
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
22998
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22999
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23000
|
+
Started GET "/nested_form_gem?inline_link_to_add=true" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23001
|
+
Processing by BaseController#nested_form_gem as HTML
|
23002
|
+
Parameters: {"inline_link_to_add"=>"true"}
|
23003
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
23004
|
+
Rendered base/_address_fields.html.haml (0.7ms)
|
23005
|
+
Rendered base/_address_fields.html.haml (0.6ms)
|
23006
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (3.2ms)
|
23007
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
23008
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
23009
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23010
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23011
|
+
Processing by BaseController#nested_form_gem as HTML
|
23012
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
23013
|
+
Rendered base/_address_fields.html.haml (0.6ms)
|
23014
|
+
Rendered base/_address_fields.html.haml (0.6ms)
|
23015
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (3.0ms)
|
23016
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
23017
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23018
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23019
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23020
|
+
Processing by BaseController#nested_form_gem as HTML
|
23021
|
+
Rendered base/_user_fields.html.haml (0.5ms)
|
23022
|
+
Rendered base/_address_fields.html.haml (0.9ms)
|
23023
|
+
Rendered base/_address_fields.html.haml (0.7ms)
|
23024
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (3.7ms)
|
23025
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
23026
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23027
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23028
|
+
Started GET "/nested_form_gem" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23029
|
+
Processing by BaseController#nested_form_gem as HTML
|
23030
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
23031
|
+
Rendered base/_address_fields.html.haml (0.7ms)
|
23032
|
+
Rendered base/_address_fields.html.haml (0.7ms)
|
23033
|
+
Rendered base/nested_form_gem.html.haml within layouts/application (3.4ms)
|
23034
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
23035
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23036
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23037
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23038
|
+
Processing by BaseController#fields_for as HTML
|
23039
|
+
Rendered base/_user_fields.html.haml (0.6ms)
|
23040
|
+
Rendered base/_address_fields.html.haml (0.6ms)
|
23041
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
23042
|
+
Rendered base/fields_for.html.haml within layouts/application (4.4ms)
|
23043
|
+
Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
|
23044
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
23045
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23046
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23047
|
+
Processing by BaseController#fields_for as HTML
|
23048
|
+
Rendered base/_user_fields.html.haml (0.7ms)
|
23049
|
+
Rendered base/_address_fields.html.haml (1.0ms)
|
23050
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
23051
|
+
Rendered base/fields_for.html.haml within layouts/application (4.8ms)
|
23052
|
+
Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.0ms)
|
23053
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23054
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23055
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23056
|
+
Processing by BaseController#fields_for as HTML
|
23057
|
+
Rendered base/_user_fields.html.haml (0.5ms)
|
23058
|
+
Rendered base/_address_fields.html.haml (1.0ms)
|
23059
|
+
Rendered base/_tag_fields.html.haml (0.5ms)
|
23060
|
+
Rendered base/fields_for.html.haml within layouts/application (3.3ms)
|
23061
|
+
Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
23062
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23063
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23064
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23065
|
+
Processing by BaseController#fields_for as HTML
|
23066
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
23067
|
+
Rendered base/_address_fields.html.haml (0.6ms)
|
23068
|
+
Rendered base/_tag_fields.html.haml (0.3ms)
|
23069
|
+
Rendered base/fields_for.html.haml within layouts/application (2.8ms)
|
23070
|
+
Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
23071
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
23072
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23073
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23074
|
+
Processing by BaseController#fields_for as HTML
|
23075
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
23076
|
+
Rendered base/_address_fields.html.haml (0.5ms)
|
23077
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
23078
|
+
Rendered base/fields_for.html.haml within layouts/application (2.6ms)
|
23079
|
+
Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
23080
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23081
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23082
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23083
|
+
Processing by BaseController#fields_for as HTML
|
23084
|
+
Rendered base/_user_fields.html.haml (0.5ms)
|
23085
|
+
Rendered base/_address_fields.html.haml (1.0ms)
|
23086
|
+
Rendered base/_tag_fields.html.haml (0.4ms)
|
23087
|
+
Rendered base/fields_for.html.haml within layouts/application (3.1ms)
|
23088
|
+
Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
23089
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23090
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23091
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23092
|
+
Processing by BaseController#fields_for as HTML
|
23093
|
+
Rendered base/_user_fields.html.haml (0.7ms)
|
23094
|
+
Rendered base/_address_fields.html.haml (2.7ms)
|
23095
|
+
Rendered base/_tag_fields.html.haml (0.6ms)
|
23096
|
+
Rendered base/fields_for.html.haml within layouts/application (5.3ms)
|
23097
|
+
Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.0ms)
|
23098
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
23099
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23100
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23101
|
+
Processing by BaseController#fields_for as HTML
|
23102
|
+
Rendered base/_user_fields.html.haml (0.8ms)
|
23103
|
+
Rendered base/_address_fields.html.haml (0.9ms)
|
23104
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
23105
|
+
Rendered base/fields_for.html.haml within layouts/application (4.1ms)
|
23106
|
+
Completed 200 OK in 8ms (Views: 6.3ms | ActiveRecord: 0.0ms)
|
23107
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23108
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23109
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23110
|
+
Processing by BaseController#fields_for as HTML
|
23111
|
+
Rendered base/_user_fields.html.haml (0.8ms)
|
23112
|
+
Rendered base/_address_fields.html.haml (1.0ms)
|
23113
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
23114
|
+
Rendered base/fields_for.html.haml within layouts/application (4.8ms)
|
23115
|
+
Completed 200 OK in 8ms (Views: 6.2ms | ActiveRecord: 0.0ms)
|
23116
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23117
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23118
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23119
|
+
Processing by BaseController#fields_for as HTML
|
23120
|
+
Rendered base/_user_fields.html.haml (0.5ms)
|
23121
|
+
Rendered base/_address_fields.html.haml (1.0ms)
|
23122
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
23123
|
+
Rendered base/fields_for.html.haml within layouts/application (4.9ms)
|
23124
|
+
Completed 200 OK in 8ms (Views: 6.1ms | ActiveRecord: 0.0ms)
|
23125
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23126
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23127
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23128
|
+
Processing by BaseController#fields_for as HTML
|
23129
|
+
Rendered base/_user_fields.html.haml (0.7ms)
|
23130
|
+
Rendered base/_address_fields.html.haml (0.9ms)
|
23131
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
23132
|
+
Rendered base/fields_for.html.haml within layouts/application (3.5ms)
|
23133
|
+
Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
23134
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
23135
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23136
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23137
|
+
Processing by BaseController#fields_for as HTML
|
23138
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
23139
|
+
Rendered base/_address_fields.html.haml (0.5ms)
|
23140
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
23141
|
+
Rendered base/fields_for.html.haml within layouts/application (2.7ms)
|
23142
|
+
Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
23143
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23144
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23145
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23146
|
+
Processing by BaseController#fields_for as HTML
|
23147
|
+
Rendered base/_user_fields.html.haml (0.8ms)
|
23148
|
+
Rendered base/_address_fields.html.haml (0.9ms)
|
23149
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
23150
|
+
Rendered base/fields_for.html.haml within layouts/application (3.5ms)
|
23151
|
+
Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
23152
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23153
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23154
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23155
|
+
Processing by BaseController#fields_for as HTML
|
23156
|
+
Rendered base/_user_fields.html.haml (1.0ms)
|
23157
|
+
Rendered base/_address_fields.html.haml (1.1ms)
|
23158
|
+
Rendered base/_tag_fields.html.haml (1.2ms)
|
23159
|
+
Rendered base/fields_for.html.haml within layouts/application (5.9ms)
|
23160
|
+
Completed 200 OK in 9ms (Views: 7.3ms | ActiveRecord: 0.0ms)
|
23161
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
23162
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23163
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23164
|
+
Processing by BaseController#fields_for as HTML
|
23165
|
+
Rendered base/_user_fields.html.haml (0.5ms)
|
23166
|
+
Rendered base/_address_fields.html.haml (0.6ms)
|
23167
|
+
Rendered base/_tag_fields.html.haml (0.3ms)
|
23168
|
+
Rendered base/fields_for.html.haml within layouts/application (2.9ms)
|
23169
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
23170
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23171
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23172
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23173
|
+
Processing by BaseController#fields_for as HTML
|
23174
|
+
Rendered base/_user_fields.html.haml (0.5ms)
|
23175
|
+
Rendered base/_address_fields.html.haml (1.5ms)
|
23176
|
+
Rendered base/_tag_fields.html.haml (0.6ms)
|
23177
|
+
Rendered base/fields_for.html.haml within layouts/application (5.0ms)
|
23178
|
+
Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.0ms)
|
23179
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23180
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23181
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23182
|
+
Processing by BaseController#fields_for as HTML
|
23183
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
23184
|
+
Rendered base/_address_fields.html.haml (0.5ms)
|
23185
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
23186
|
+
Rendered base/fields_for.html.haml within layouts/application (2.4ms)
|
23187
|
+
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
23188
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23189
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23190
|
+
Started GET "/fields_for" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23191
|
+
Processing by BaseController#fields_for as HTML
|
23192
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
23193
|
+
Rendered base/_address_fields.html.haml (0.6ms)
|
23194
|
+
Rendered base/_tag_fields.html.haml (0.2ms)
|
23195
|
+
Rendered base/fields_for.html.haml within layouts/application (2.8ms)
|
23196
|
+
Completed 200 OK in 12ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
23197
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
23198
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23199
|
+
Started GET "/basic_form" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23200
|
+
Processing by BaseController#basic_form as HTML
|
23201
|
+
Rendered base/_user_fields.html.haml (0.3ms)
|
23202
|
+
Rendered base/basic_form.html.haml within layouts/application (1.5ms)
|
23203
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
23204
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
23205
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23206
|
+
Started GET "/basic_form" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23207
|
+
Processing by BaseController#basic_form as HTML
|
23208
|
+
Rendered base/_user_fields.html.haml (0.4ms)
|
23209
|
+
Rendered base/basic_form.html.haml within layouts/application (0.9ms)
|
23210
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
23211
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23212
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23213
|
+
Started GET "/basic_form" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23214
|
+
Processing by BaseController#basic_form as HTML
|
23215
|
+
Rendered base/_user_fields.html.haml (0.3ms)
|
23216
|
+
Rendered base/basic_form.html.haml within layouts/application (0.8ms)
|
23217
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
23218
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23219
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23220
|
+
Started GET "/basic_form" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23221
|
+
Processing by BaseController#basic_form as HTML
|
23222
|
+
Rendered base/_user_fields.html.haml (0.3ms)
|
23223
|
+
Rendered base/basic_form.html.haml within layouts/application (0.7ms)
|
23224
|
+
Completed 200 OK in 1ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
23225
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23226
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23227
|
+
Started GET "/basic_form" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23228
|
+
Processing by BaseController#basic_form as HTML
|
23229
|
+
Rendered base/_user_fields.html.haml (0.3ms)
|
23230
|
+
Rendered base/basic_form.html.haml within layouts/application (0.8ms)
|
23231
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
23232
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23233
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23234
|
+
Started GET "/basic_form" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23235
|
+
Processing by BaseController#basic_form as HTML
|
23236
|
+
Rendered base/_user_fields.html.haml (0.3ms)
|
23237
|
+
Rendered base/basic_form.html.haml within layouts/application (0.8ms)
|
23238
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
23239
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23240
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23241
|
+
Started GET "/basic_form" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23242
|
+
Processing by BaseController#basic_form as HTML
|
23243
|
+
Rendered base/_user_fields.html.haml (0.3ms)
|
23244
|
+
Rendered base/basic_form.html.haml within layouts/application (0.7ms)
|
23245
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
23246
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23247
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23248
|
+
Started GET "/basic_form" for 127.0.0.1 at 2015-07-09 19:48:55 +0200
|
23249
|
+
Processing by BaseController#basic_form as HTML
|
23250
|
+
Rendered base/_user_fields.html.haml (0.3ms)
|
23251
|
+
Rendered base/basic_form.html.haml within layouts/application (0.7ms)
|
23252
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
23253
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
data/spec/examples.txt
CHANGED
@@ -1,53 +1,53 @@
|
|
1
1
|
example_id | status | run_time |
|
2
2
|
------------------------------------------------ | ------ | --------------- |
|
3
|
-
./spec/features/strong_form_spec.rb[1:1:1:1] | passed | 0.
|
4
|
-
./spec/features/strong_form_spec.rb[1:1:1:2] | passed | 0.
|
5
|
-
./spec/features/strong_form_spec.rb[1:1:1:3] | passed | 0.
|
6
|
-
./spec/features/strong_form_spec.rb[1:1:1:4] | passed | 0.
|
7
|
-
./spec/features/strong_form_spec.rb[1:1:2:1] | passed | 0.
|
8
|
-
./spec/features/strong_form_spec.rb[1:1:2:2] | passed | 0.
|
9
|
-
./spec/features/strong_form_spec.rb[1:1:2:3] | passed | 0.
|
10
|
-
./spec/features/strong_form_spec.rb[1:1:2:4] | passed | 0.
|
11
|
-
./spec/features/strong_form_spec.rb[1:2:1:1:1] | passed | 0.
|
12
|
-
./spec/features/strong_form_spec.rb[1:2:1:1:2] | passed | 0.
|
13
|
-
./spec/features/strong_form_spec.rb[1:2:1:1:3] | passed | 0.
|
14
|
-
./spec/features/strong_form_spec.rb[1:2:1:1:4] | passed | 0.
|
15
|
-
./spec/features/strong_form_spec.rb[1:2:1:1:5] | passed | 0.
|
16
|
-
./spec/features/strong_form_spec.rb[1:2:1:1:6] | passed | 0.
|
17
|
-
./spec/features/strong_form_spec.rb[1:2:2:1:1] | passed | 0.
|
18
|
-
./spec/features/strong_form_spec.rb[1:2:2:1:2] | passed | 0.
|
19
|
-
./spec/features/strong_form_spec.rb[1:2:2:1:3] | passed | 0.
|
20
|
-
./spec/features/strong_form_spec.rb[1:2:2:1:4] | passed | 0.
|
21
|
-
./spec/features/strong_form_spec.rb[1:2:2:2:1] | passed | 0.
|
22
|
-
./spec/features/strong_form_spec.rb[1:2:2:2:2] | passed | 0.
|
23
|
-
./spec/features/strong_form_spec.rb[1:2:3:1:1] | passed | 0.
|
24
|
-
./spec/features/strong_form_spec.rb[1:2:3:1:2] | passed | 0.
|
25
|
-
./spec/features/strong_form_spec.rb[1:2:3:1:3] | passed | 0.
|
26
|
-
./spec/features/strong_form_spec.rb[1:2:3:1:4] | passed | 0.
|
27
|
-
./spec/features/strong_form_spec.rb[1:2:3:2:1] | passed | 0.
|
28
|
-
./spec/features/strong_form_spec.rb[1:2:3:2:2] | passed | 0.
|
29
|
-
./spec/features/strong_form_spec.rb[1:3:1:1:1] | passed | 0.
|
30
|
-
./spec/features/strong_form_spec.rb[1:3:1:1:2] | passed | 0.
|
31
|
-
./spec/features/strong_form_spec.rb[1:3:2:1:1] | passed | 0.
|
32
|
-
./spec/features/strong_form_spec.rb[1:3:2:1:2] | passed | 0.
|
33
|
-
./spec/features/strong_form_spec.rb[1:4:1] | passed | 0.
|
34
|
-
./spec/features/strong_form_spec.rb[1:4:2:1:1:1] | passed | 0.
|
35
|
-
./spec/features/strong_form_spec.rb[1:4:2:1:1:2] | passed | 0.
|
36
|
-
./spec/features/strong_form_spec.rb[1:4:2:1:2:1] | passed | 0.
|
37
|
-
./spec/features/strong_form_spec.rb[1:4:2:1:2:2] | passed | 0.
|
38
|
-
./spec/features/strong_form_spec.rb[1:4:2:1:3] | passed | 0.
|
39
|
-
./spec/features/strong_form_spec.rb[1:4:2:2:1] | passed | 0.
|
40
|
-
./spec/features/strong_form_spec.rb[1:4:3:1:1] | passed | 0.
|
41
|
-
./spec/features/strong_form_spec.rb[1:4:3:1:2] | passed | 0.
|
42
|
-
./spec/features/strong_form_spec.rb[1:4:3:2:1] | passed | 0.
|
43
|
-
./spec/features/strong_form_spec.rb[1:4:4:1:1] | passed | 0.
|
44
|
-
./spec/features/strong_form_spec.rb[1:4:4:1:2] | passed | 0.
|
45
|
-
./spec/features/strong_form_spec.rb[1:4:4:1:3] | passed | 0.
|
46
|
-
./spec/features/strong_form_spec.rb[1:4:4:1:4] | passed | 0.
|
47
|
-
./spec/features/strong_form_spec.rb[1:4:4:1:5] | passed | 0.
|
48
|
-
./spec/features/strong_form_spec.rb[1:4:4:1:6] | passed | 0.
|
49
|
-
./spec/features/strong_form_spec.rb[1:4:4:2:1] | passed | 0.
|
50
|
-
./spec/features/strong_form_spec.rb[1:4:5:1:1] | passed | 0.
|
3
|
+
./spec/features/strong_form_spec.rb[1:1:1:1] | passed | 0.00582 seconds |
|
4
|
+
./spec/features/strong_form_spec.rb[1:1:1:2] | passed | 0.00449 seconds |
|
5
|
+
./spec/features/strong_form_spec.rb[1:1:1:3] | passed | 0.00362 seconds |
|
6
|
+
./spec/features/strong_form_spec.rb[1:1:1:4] | passed | 0.00331 seconds |
|
7
|
+
./spec/features/strong_form_spec.rb[1:1:2:1] | passed | 0.00361 seconds |
|
8
|
+
./spec/features/strong_form_spec.rb[1:1:2:2] | passed | 0.00354 seconds |
|
9
|
+
./spec/features/strong_form_spec.rb[1:1:2:3] | passed | 0.00411 seconds |
|
10
|
+
./spec/features/strong_form_spec.rb[1:1:2:4] | passed | 0.00415 seconds |
|
11
|
+
./spec/features/strong_form_spec.rb[1:2:1:1:1] | passed | 0.01044 seconds |
|
12
|
+
./spec/features/strong_form_spec.rb[1:2:1:1:2] | passed | 0.01162 seconds |
|
13
|
+
./spec/features/strong_form_spec.rb[1:2:1:1:3] | passed | 0.00937 seconds |
|
14
|
+
./spec/features/strong_form_spec.rb[1:2:1:1:4] | passed | 0.0141 seconds |
|
15
|
+
./spec/features/strong_form_spec.rb[1:2:1:1:5] | passed | 0.00729 seconds |
|
16
|
+
./spec/features/strong_form_spec.rb[1:2:1:1:6] | passed | 0.00922 seconds |
|
17
|
+
./spec/features/strong_form_spec.rb[1:2:2:1:1] | passed | 0.01213 seconds |
|
18
|
+
./spec/features/strong_form_spec.rb[1:2:2:1:2] | passed | 0.01326 seconds |
|
19
|
+
./spec/features/strong_form_spec.rb[1:2:2:1:3] | passed | 0.01179 seconds |
|
20
|
+
./spec/features/strong_form_spec.rb[1:2:2:1:4] | passed | 0.01193 seconds |
|
21
|
+
./spec/features/strong_form_spec.rb[1:2:2:2:1] | passed | 0.00814 seconds |
|
22
|
+
./spec/features/strong_form_spec.rb[1:2:2:2:2] | passed | 0.0099 seconds |
|
23
|
+
./spec/features/strong_form_spec.rb[1:2:3:1:1] | passed | 0.01007 seconds |
|
24
|
+
./spec/features/strong_form_spec.rb[1:2:3:1:2] | passed | 0.00911 seconds |
|
25
|
+
./spec/features/strong_form_spec.rb[1:2:3:1:3] | passed | 0.01346 seconds |
|
26
|
+
./spec/features/strong_form_spec.rb[1:2:3:1:4] | passed | 0.00884 seconds |
|
27
|
+
./spec/features/strong_form_spec.rb[1:2:3:2:1] | passed | 0.00702 seconds |
|
28
|
+
./spec/features/strong_form_spec.rb[1:2:3:2:2] | passed | 0.01522 seconds |
|
29
|
+
./spec/features/strong_form_spec.rb[1:3:1:1:1] | passed | 0.14725 seconds |
|
30
|
+
./spec/features/strong_form_spec.rb[1:3:1:1:2] | passed | 0.00663 seconds |
|
31
|
+
./spec/features/strong_form_spec.rb[1:3:2:1:1] | passed | 0.01153 seconds |
|
32
|
+
./spec/features/strong_form_spec.rb[1:3:2:1:2] | passed | 0.00681 seconds |
|
33
|
+
./spec/features/strong_form_spec.rb[1:4:1] | passed | 0.00863 seconds |
|
34
|
+
./spec/features/strong_form_spec.rb[1:4:2:1:1:1] | passed | 0.0066 seconds |
|
35
|
+
./spec/features/strong_form_spec.rb[1:4:2:1:1:2] | passed | 0.00784 seconds |
|
36
|
+
./spec/features/strong_form_spec.rb[1:4:2:1:2:1] | passed | 0.00791 seconds |
|
37
|
+
./spec/features/strong_form_spec.rb[1:4:2:1:2:2] | passed | 0.00777 seconds |
|
38
|
+
./spec/features/strong_form_spec.rb[1:4:2:1:3] | passed | 0.00791 seconds |
|
39
|
+
./spec/features/strong_form_spec.rb[1:4:2:2:1] | passed | 0.00783 seconds |
|
40
|
+
./spec/features/strong_form_spec.rb[1:4:3:1:1] | passed | 0.00654 seconds |
|
41
|
+
./spec/features/strong_form_spec.rb[1:4:3:1:2] | passed | 0.00652 seconds |
|
42
|
+
./spec/features/strong_form_spec.rb[1:4:3:2:1] | passed | 0.00722 seconds |
|
43
|
+
./spec/features/strong_form_spec.rb[1:4:4:1:1] | passed | 0.00851 seconds |
|
44
|
+
./spec/features/strong_form_spec.rb[1:4:4:1:2] | passed | 0.02865 seconds |
|
45
|
+
./spec/features/strong_form_spec.rb[1:4:4:1:3] | passed | 0.00679 seconds |
|
46
|
+
./spec/features/strong_form_spec.rb[1:4:4:1:4] | passed | 0.00673 seconds |
|
47
|
+
./spec/features/strong_form_spec.rb[1:4:4:1:5] | passed | 0.01028 seconds |
|
48
|
+
./spec/features/strong_form_spec.rb[1:4:4:1:6] | passed | 0.00755 seconds |
|
49
|
+
./spec/features/strong_form_spec.rb[1:4:4:2:1] | passed | 0.00933 seconds |
|
50
|
+
./spec/features/strong_form_spec.rb[1:4:5:1:1] | passed | 0.01 seconds |
|
51
51
|
./spec/models/user_spec.rb[1:1:1:1] | passed | 0.0004 seconds |
|
52
52
|
./spec/models/user_spec.rb[1:1:2:1] | passed | 0.00766 seconds |
|
53
53
|
./spec/models/user_spec.rb[1:1:2:2] | passed | 0.00036 seconds |
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: strong_form
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Markus Doits
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-07-
|
11
|
+
date: 2015-07-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|