strong_form 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2a4b92dbd144d13249f5a77baf5ed520b56a41f2
4
- data.tar.gz: 7111499d4467203c84232c2d29926b83482b3864
3
+ metadata.gz: 82f53b420bc975c8584fb569a392689859becd54
4
+ data.tar.gz: b31cbffcc7c257df3a7a7a9186b611577889394c
5
5
  SHA512:
6
- metadata.gz: f12718f5019d565731035884ceaf08913945306e262bb42f7e5b12fbb1417d65157431c3cf521f1219898e1a15496fe8558bcaa19c146f50cf4defabdf682fce
7
- data.tar.gz: 029cca5e49b51bf56faff61a8f30e0785fcd25018ebb4084e1a8b7e9d1d6f649c54f006ea55eff0f934b79f54aa167e98e61dd904467c95f659e25abd2362d0b
6
+ metadata.gz: 7abaa1c497d56fd47477830e5a8f592fc16567e040440e0983c57c08ddc5e9bc180b620d53a4d58b78c5b8f2b5510099d6fd696365f99530a715e822591762e4
7
+ data.tar.gz: 73773f063fef71ad8145bb700a169cd376042452bd0c5993daf2d7ab34e7329fa5e6d58c4ddee1ea90ebcbf7ba6eb13ed60fa615961801731502b6ca4d928712
data/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  ## master
4
4
 
5
+ ## 0.0.4
6
+
7
+ ### Bugs fixed
8
+
9
+ * Different (saner?) way of initialization to fix stack level too deep errors
10
+ when classes are not cached (`Module.prepend` didn't work like it should)
11
+
5
12
  ## 0.0.3
6
13
 
7
14
  ### Bugs fixed
@@ -1,41 +1,45 @@
1
- module NestedForm
2
- module BuilderMixin
3
- alias_method :orig_link_to_add, :link_to_add
4
- alias_method :orig_link_to_remove, :link_to_remove
1
+ module StrongForm
2
+ module NestedForm
3
+ extend ActiveSupport::Concern
5
4
 
6
- def link_to_add(*args, &block)
7
- options = args.extract_options!.symbolize_keys
8
- association = args.pop
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
- if object.respond_to?(:permitted_attributes)
11
- return unless object.permitted_nested_attributes?(association)
9
+ def link_to_add(*args, &block)
10
+ options = args.extract_options!.symbolize_keys
11
+ association = args.pop
12
12
 
13
- unless options[:model_object]
14
- reflection = object.class.reflect_on_association(association)
15
- options[:model_object] = reflection.klass.new
16
- end
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
- unless options[:model_object].permitted_attributes.present?
19
- if object.permitted_attributes == true || object.permitted_attributes.nil?
20
- options[:model_object].permitted_attributes = true
21
- else
22
- options[:model_object].permitted_attributes =
23
- StrongForm::Finder.find_child_permitted_attributes(
24
- "#{association}_attributes".to_sym, object.permitted_attributes
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
- orig_link_to_add(*args, association, options, &block)
31
- end
33
+ orig_link_to_add(*args, association, options, &block)
34
+ end
32
35
 
33
- def link_to_remove(*args, &block)
34
- return if object.respond_to?(:permitted_attributes) &&
35
- !object.permitted_attributes.nil? &&
36
- object.permitted_attributes != true &&
37
- !object.permitted_attributes.include?(:_destroy)
38
- orig_link_to_remove(*args, &block)
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
@@ -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
- if !Rails.env.test? && Rails.configuration.cache_classes
25
- StrongForm.inject
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
@@ -1,12 +1,17 @@
1
1
  module StrongForm
2
2
  module Tag
3
- def render
4
- if object.respond_to?(:permitted_attributes) && !object.permitted_attributes.nil?
5
- (@html_options || @options)[:disabled] ||=
6
- object.permitted_attributes != true &&
7
- !object.permitted_attributes.include?(@method_name.to_sym)
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
@@ -1,3 +1,3 @@
1
1
  module StrongForm
2
- VERSION = '0.0.3'
2
+ VERSION = '0.0.4'
3
3
  end
@@ -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
   (0.0ms) rollback transaction
22392
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
22393
+  (0.8ms) CREATE 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) 
22394
+  (0.5ms) 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
+  (0.6ms) CREATE 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) 
22396
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
22397
+  (0.1ms) select sqlite_version(*)
22398
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
22399
+  (0.1ms) SELECT version FROM "schema_migrations"
22400
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150626132542')
22401
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150626095843')
22402
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150626104120')
22403
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
22404
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
22411
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22418
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22425
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22432
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22439
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22446
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22453
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22460
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22469
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22478
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22487
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22496
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22505
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22514
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
22523
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
22532
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22541
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22550
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22559
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22568
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22577
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22586
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22595
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22604
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22613
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22622
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22632
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22642
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22652
+  (0.7ms) begin transaction
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
+  (0.1ms) rollback transaction
22662
+  (0.4ms) begin transaction
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
+  (0.0ms) rollback transaction
22671
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22680
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22689
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22698
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22707
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22716
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
22725
+  (0.0ms) begin transaction
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
+  (0.4ms) rollback transaction
22734
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22742
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22750
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22758
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22767
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22776
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22785
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
22794
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22804
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
22814
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
22823
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
22824
+  (2.7ms) CREATE 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) 
22825
+  (0.6ms) 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
+  (0.6ms) CREATE 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) 
22827
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
22828
+  (0.1ms) select sqlite_version(*)
22829
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
22830
+  (0.1ms) SELECT version FROM "schema_migrations"
22831
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150626132542')
22832
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150626095843')
22833
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150626104120')
22834
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
22835
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
22845
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22855
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22865
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22875
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22884
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
22892
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
22900
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22908
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22917
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22926
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22935
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22944
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22953
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22962
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22971
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22980
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
22989
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
22999
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
23009
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
23018
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
23027
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
23036
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
23045
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
23054
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
23063
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
23072
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
23081
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
23090
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
23099
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
23108
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
23117
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
23126
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
23135
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
23144
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
23153
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
23162
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
23171
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
23180
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
23189
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
23198
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
23205
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
23212
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
23219
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
23226
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
23233
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
23240
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
23247
+  (0.0ms) begin transaction
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
+  (0.0ms) 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.00745 seconds |
4
- ./spec/features/strong_form_spec.rb[1:1:1:2] | passed | 0.00651 seconds |
5
- ./spec/features/strong_form_spec.rb[1:1:1:3] | passed | 0.00659 seconds |
6
- ./spec/features/strong_form_spec.rb[1:1:1:4] | passed | 0.01461 seconds |
7
- ./spec/features/strong_form_spec.rb[1:1:2:1] | passed | 0.00528 seconds |
8
- ./spec/features/strong_form_spec.rb[1:1:2:2] | passed | 0.00637 seconds |
9
- ./spec/features/strong_form_spec.rb[1:1:2:3] | passed | 0.00925 seconds |
10
- ./spec/features/strong_form_spec.rb[1:1:2:4] | passed | 0.00705 seconds |
11
- ./spec/features/strong_form_spec.rb[1:2:1:1:1] | passed | 0.00688 seconds |
12
- ./spec/features/strong_form_spec.rb[1:2:1:1:2] | passed | 0.00612 seconds |
13
- ./spec/features/strong_form_spec.rb[1:2:1:1:3] | passed | 0.00579 seconds |
14
- ./spec/features/strong_form_spec.rb[1:2:1:1:4] | passed | 0.00688 seconds |
15
- ./spec/features/strong_form_spec.rb[1:2:1:1:5] | passed | 0.00774 seconds |
16
- ./spec/features/strong_form_spec.rb[1:2:1:1:6] | passed | 0.00616 seconds |
17
- ./spec/features/strong_form_spec.rb[1:2:2:1:1] | passed | 0.00617 seconds |
18
- ./spec/features/strong_form_spec.rb[1:2:2:1:2] | passed | 0.00827 seconds |
19
- ./spec/features/strong_form_spec.rb[1:2:2:1:3] | passed | 0.00667 seconds |
20
- ./spec/features/strong_form_spec.rb[1:2:2:1:4] | passed | 0.16309 seconds |
21
- ./spec/features/strong_form_spec.rb[1:2:2:2:1] | passed | 0.00837 seconds |
22
- ./spec/features/strong_form_spec.rb[1:2:2:2:2] | passed | 0.00665 seconds |
23
- ./spec/features/strong_form_spec.rb[1:2:3:1:1] | passed | 0.02141 seconds |
24
- ./spec/features/strong_form_spec.rb[1:2:3:1:2] | passed | 0.01044 seconds |
25
- ./spec/features/strong_form_spec.rb[1:2:3:1:3] | passed | 0.00713 seconds |
26
- ./spec/features/strong_form_spec.rb[1:2:3:1:4] | passed | 0.00862 seconds |
27
- ./spec/features/strong_form_spec.rb[1:2:3:2:1] | passed | 0.00819 seconds |
28
- ./spec/features/strong_form_spec.rb[1:2:3:2:2] | passed | 0.0066 seconds |
29
- ./spec/features/strong_form_spec.rb[1:3:1:1:1] | passed | 0.00748 seconds |
30
- ./spec/features/strong_form_spec.rb[1:3:1:1:2] | passed | 0.00968 seconds |
31
- ./spec/features/strong_form_spec.rb[1:3:2:1:1] | passed | 0.00934 seconds |
32
- ./spec/features/strong_form_spec.rb[1:3:2:1:2] | passed | 0.0084 seconds |
33
- ./spec/features/strong_form_spec.rb[1:4:1] | passed | 0.01215 seconds |
34
- ./spec/features/strong_form_spec.rb[1:4:2:1:1:1] | passed | 0.00607 seconds |
35
- ./spec/features/strong_form_spec.rb[1:4:2:1:1:2] | passed | 0.007 seconds |
36
- ./spec/features/strong_form_spec.rb[1:4:2:1:2:1] | passed | 0.01327 seconds |
37
- ./spec/features/strong_form_spec.rb[1:4:2:1:2:2] | passed | 0.00894 seconds |
38
- ./spec/features/strong_form_spec.rb[1:4:2:1:3] | passed | 0.00802 seconds |
39
- ./spec/features/strong_form_spec.rb[1:4:2:2:1] | passed | 0.00665 seconds |
40
- ./spec/features/strong_form_spec.rb[1:4:3:1:1] | passed | 0.00573 seconds |
41
- ./spec/features/strong_form_spec.rb[1:4:3:1:2] | passed | 0.00619 seconds |
42
- ./spec/features/strong_form_spec.rb[1:4:3:2:1] | passed | 0.00631 seconds |
43
- ./spec/features/strong_form_spec.rb[1:4:4:1:1] | passed | 0.01172 seconds |
44
- ./spec/features/strong_form_spec.rb[1:4:4:1:2] | passed | 0.01175 seconds |
45
- ./spec/features/strong_form_spec.rb[1:4:4:1:3] | passed | 0.00976 seconds |
46
- ./spec/features/strong_form_spec.rb[1:4:4:1:4] | passed | 0.00939 seconds |
47
- ./spec/features/strong_form_spec.rb[1:4:4:1:5] | passed | 0.00902 seconds |
48
- ./spec/features/strong_form_spec.rb[1:4:4:1:6] | passed | 0.00815 seconds |
49
- ./spec/features/strong_form_spec.rb[1:4:4:2:1] | passed | 0.01328 seconds |
50
- ./spec/features/strong_form_spec.rb[1:4:5:1:1] | passed | 0.01331 seconds |
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.3
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-08 00:00:00.000000000 Z
11
+ date: 2015-07-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails