with_popup 0.0.5 → 0.0.6

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: ced1a7b96ea18e63444272417269736509ad0bbe
4
- data.tar.gz: d32df67c81d8ee81f47b841c0fb10280bb924d34
3
+ metadata.gz: 2c7ae72e6cf53813e7793f430f3dbffb2e0cf725
4
+ data.tar.gz: 6d3be03e9ead36bdcead2431ee38a8cb0d222ac8
5
5
  SHA512:
6
- metadata.gz: 4c6fab1158447db10875a4ae99e1a3474cef2db87bdb528da16eb76424004d5d8c6087cc47fc9493ec1119adfa7bbdf9a4135e1be1b0a40a796e703941ab49f4
7
- data.tar.gz: 6d14b92b4dda388075b66604af4fd801e6ff32fcce1d1c3272353ad10f60e47b23c675a9bacf8bacf1556ed10b642881cc84d0ff88bd2bb938424e0bf1aaf3ba
6
+ metadata.gz: 56e57d88e08789feef936e6f6a200a492bb87654d308ba3a3cbf478bdb97fa3ea4c835ed163d27bf3bf0f5c29bc38663511a8dd3c1a41a89a850a3fe8c0f96f0
7
+ data.tar.gz: b622aaa3e86952c74764af6a1b78c2269e631e669e27accc302fb972c8b33b057b4f1b3ce62bedb99bd19424d86a6cb2970e8a482c4f62aa81f5063fd41c8342
data/lib/with_popup.rb CHANGED
@@ -1,4 +1,6 @@
1
1
  require "with_popup/engine"
2
+ require 'with_popup/controller'
3
+ require 'with_popup/helpers'
2
4
 
3
5
  module WithPopup
4
6
  autoload :Rack, 'with_popup/rack'
@@ -1,6 +1,3 @@
1
- require 'with_popup/controller'
2
- require 'with_popup/helpers'
3
-
4
1
  module WithPopup
5
2
  class Engine < ::Rails::Engine
6
3
  require 'jquery-rails'
@@ -1,3 +1,3 @@
1
1
  module WithPopup
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
@@ -19100,3 +19100,61 @@ Processing by PostsController#new as HTML
19100
19100
  Parameters: {"view"=>"form_tag_helper"}
19101
19101
  Rendered posts/form_tag_helper.html.erb within layouts/application (5.3ms)
19102
19102
  Completed 200 OK in 31ms (Views: 30.7ms | ActiveRecord: 0.0ms)
19103
+
19104
+
19105
+ Started GET "/" for ::1 at 2016-03-22 17:17:16 +0700
19106
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
19107
+ Processing by TopController#index as HTML
19108
+ Rendered top/index.html.erb within layouts/application (2.5ms)
19109
+ Completed 200 OK in 266ms (Views: 265.7ms | ActiveRecord: 0.0ms)
19110
+
19111
+
19112
+ Started GET "/posts/new?view=form_tag_helper" for ::1 at 2016-03-22 17:17:18 +0700
19113
+ Processing by PostsController#new as HTML
19114
+ Parameters: {"view"=>"form_tag_helper"}
19115
+ Rendered posts/form_tag_helper.html.erb within layouts/application (21.1ms)
19116
+ Completed 200 OK in 61ms (Views: 53.2ms | ActiveRecord: 0.4ms)
19117
+
19118
+
19119
+ Started POST "/posts" for ::1 at 2016-03-22 17:17:20 +0700
19120
+ Processing by PostsController#create as HTML
19121
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"VAU5ozQsR8ipCJGCgBz/FIeEFK0ABKV3nKXdzXvVTlsLVnI7IHPZ76vk2U592vQ382+B/lZbEcQpkQyOf+x/0Q==", "post"=>{"body"=>""}, "commit"=>"submit_tag (with popup options)", "view"=>"form_tag_helper"}
19122
+ Rendered posts/form_tag_helper.html.erb within layouts/application (3.1ms)
19123
+ Completed 200 OK in 40ms (Views: 18.2ms | ActiveRecord: 0.0ms)
19124
+
19125
+
19126
+ Started GET "/posts/src" for ::1 at 2016-03-22 17:17:20 +0700
19127
+ Processing by PostsController#src as HTML
19128
+ Rendered posts/src.html.erb within layouts/application (0.4ms)
19129
+ Completed 200 OK in 29ms (Views: 28.9ms | ActiveRecord: 0.0ms)
19130
+
19131
+
19132
+ Started POST "/posts" for ::1 at 2016-03-22 17:17:23 +0700
19133
+ Processing by PostsController#create as HTML
19134
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"7kHfT3eHXhoHgg24Bo0qUsBh/GvUmnka/GXQbSAPXeSxEpTXY9jAPQVuRXT7SyFxtIppOILFzalJUQEuJDZsbg==", "post"=>{"body"=>"test"}, "commit"=>"submit_tag (with popup options)", "view"=>"form_tag_helper"}
19135
+ Redirected to http://localhost:3000/posts/done
19136
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
19137
+
19138
+
19139
+ Started GET "/posts/src" for ::1 at 2016-03-22 17:17:23 +0700
19140
+ Processing by PostsController#src as HTML
19141
+ Rendered posts/src.html.erb within layouts/application (0.0ms)
19142
+ Completed 200 OK in 22ms (Views: 21.8ms | ActiveRecord: 0.0ms)
19143
+
19144
+
19145
+ Started GET "/posts/done" for ::1 at 2016-03-22 17:17:23 +0700
19146
+ Processing by PostsController#done as HTML
19147
+ Rendered posts/done.html.erb within layouts/application (1.1ms)
19148
+ Completed 200 OK in 34ms (Views: 33.1ms | ActiveRecord: 0.0ms)
19149
+
19150
+
19151
+ Started GET "/posts/reload" for ::1 at 2016-03-22 17:17:24 +0700
19152
+ Processing by PostsController#reload as HTML
19153
+ Rendered posts/reload.html.erb within layouts/application (0.4ms)
19154
+ Completed 200 OK in 21ms (Views: 21.2ms | ActiveRecord: 0.0ms)
19155
+
19156
+
19157
+ Started GET "/posts/reload" for ::1 at 2016-03-22 17:17:24 +0700
19158
+ Processing by PostsController#reload as HTML
19159
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
19160
+ Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms)
@@ -11391,3 +11391,511 @@ Processing by PostsController#create as HTML
11391
11391
  Rendered posts/form_helper.html.erb within layouts/application (0.6ms)
11392
11392
  Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.0ms)
11393
11393
   (0.1ms) rollback transaction
11394
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11395
+  (0.1ms) begin transaction
11396
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:37 +0700
11397
+ Processing by TopController#index as HTML
11398
+ Rendered top/index.html.erb within layouts/application (5.1ms)
11399
+ Completed 200 OK in 260ms (Views: 259.9ms | ActiveRecord: 0.0ms)
11400
+ Started GET "/assets/application-f9e7c1541e1b8783561468c59162bd896007380f5a3799ef2169d3a3fdf40bed.css" for 127.0.0.1 at 2016-03-22 17:15:37 +0700
11401
+ Started GET "/assets/application-05d3792b3ff34c253741c4dba847daee8f635b5183d2a6d924395629f09a9879.js" for 127.0.0.1 at 2016-03-22 17:15:37 +0700
11402
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-22 17:15:37 +0700
11403
+ Processing by PostsController#new as HTML
11404
+ Parameters: {"view"=>"form_tag_helper"}
11405
+ Rendered posts/form_tag_helper.html.erb within layouts/application (38.5ms)
11406
+ Completed 200 OK in 57ms (Views: 47.2ms | ActiveRecord: 0.6ms)
11407
+ Started GET "/assets/submit-69e7c02b7207f3a366bc4ea0be861ab507f0c3c5e2073224737fe4404e8af121.jpg" for 127.0.0.1 at 2016-03-22 17:15:37 +0700
11408
+ Started POST "/posts?post%5Bbody%5D=OK" for 127.0.0.1 at 2016-03-22 17:15:37 +0700
11409
+ Processing by PostsController#create as HTML
11410
+ Parameters: {"post"=>{"body"=>"OK"}}
11411
+ Redirected to http://127.0.0.1:52199/posts/done
11412
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
11413
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-22 17:15:37 +0700
11414
+ Processing by PostsController#done as HTML
11415
+ Rendered posts/done.html.erb within layouts/application (0.4ms)
11416
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
11417
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-22 17:15:37 +0700
11418
+ Processing by PostsController#reload as HTML
11419
+ Rendered posts/reload.html.erb within layouts/application (0.6ms)
11420
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
11421
+  (0.1ms) rollback transaction
11422
+  (0.1ms) begin transaction
11423
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:37 +0700
11424
+ Processing by TopController#index as HTML
11425
+ Rendered top/index.html.erb within layouts/application (0.4ms)
11426
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
11427
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-22 17:15:37 +0700
11428
+ Processing by PostsController#new as HTML
11429
+ Parameters: {"view"=>"form_tag_helper"}
11430
+ Rendered posts/form_tag_helper.html.erb within layouts/application (2.0ms)
11431
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
11432
+ Started POST "/posts?post%5Bbody%5D=OK" for 127.0.0.1 at 2016-03-22 17:15:37 +0700
11433
+ Processing by PostsController#create as HTML
11434
+ Parameters: {"post"=>{"body"=>"OK"}}
11435
+ Redirected to http://127.0.0.1:52199/posts/done
11436
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
11437
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-22 17:15:37 +0700
11438
+ Processing by PostsController#done as HTML
11439
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
11440
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
11441
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-22 17:15:37 +0700
11442
+ Processing by PostsController#reload as HTML
11443
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
11444
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
11445
+  (0.1ms) rollback transaction
11446
+  (0.1ms) begin transaction
11447
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:38 +0700
11448
+ Processing by TopController#index as HTML
11449
+ Rendered top/index.html.erb within layouts/application (0.3ms)
11450
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
11451
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-22 17:15:38 +0700
11452
+ Processing by PostsController#new as HTML
11453
+ Parameters: {"view"=>"form_tag_helper"}
11454
+ Rendered posts/form_tag_helper.html.erb within layouts/application (2.4ms)
11455
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
11456
+ Started POST "/posts" for 127.0.0.1 at 2016-03-22 17:15:38 +0700
11457
+ Processing by PostsController#create as HTML
11458
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>""}, "commit"=>"submit_tag", "view"=>"form_tag_helper"}
11459
+ Rendered posts/form_tag_helper.html.erb within layouts/application (2.2ms)
11460
+ Completed 200 OK in 23ms (Views: 3.4ms | ActiveRecord: 0.0ms)
11461
+  (0.1ms) rollback transaction
11462
+  (0.1ms) begin transaction
11463
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:38 +0700
11464
+ Processing by TopController#index as HTML
11465
+ Rendered top/index.html.erb within layouts/application (0.4ms)
11466
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
11467
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-22 17:15:38 +0700
11468
+ Processing by PostsController#new as HTML
11469
+ Parameters: {"view"=>"form_tag_helper"}
11470
+ Rendered posts/form_tag_helper.html.erb within layouts/application (1.9ms)
11471
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
11472
+ Started POST "/posts" for 127.0.0.1 at 2016-03-22 17:15:38 +0700
11473
+ Processing by PostsController#create as HTML
11474
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>"test"}, "commit"=>"submit_tag", "view"=>"form_tag_helper"}
11475
+ Redirected to http://127.0.0.1:52199/posts/done
11476
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
11477
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-22 17:15:38 +0700
11478
+ Processing by PostsController#done as HTML
11479
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
11480
+ Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
11481
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-22 17:15:38 +0700
11482
+ Processing by PostsController#reload as HTML
11483
+ Rendered posts/reload.html.erb within layouts/application (0.1ms)
11484
+ Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)
11485
+  (0.1ms) rollback transaction
11486
+  (0.1ms) begin transaction
11487
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:38 +0700
11488
+ Processing by TopController#index as HTML
11489
+ Rendered top/index.html.erb within layouts/application (0.3ms)
11490
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
11491
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-22 17:15:38 +0700
11492
+ Processing by PostsController#new as HTML
11493
+ Parameters: {"view"=>"form_tag_helper"}
11494
+ Rendered posts/form_tag_helper.html.erb within layouts/application (1.9ms)
11495
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
11496
+ Started POST "/posts" for 127.0.0.1 at 2016-03-22 17:15:39 +0700
11497
+ Processing by PostsController#create as HTML
11498
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>""}, "x"=>"50", "y"=>"14", "view"=>"form_tag_helper"}
11499
+ Rendered posts/form_tag_helper.html.erb within layouts/application (1.6ms)
11500
+ Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 0.0ms)
11501
+  (0.1ms) rollback transaction
11502
+  (0.1ms) begin transaction
11503
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:39 +0700
11504
+ Processing by TopController#index as HTML
11505
+ Rendered top/index.html.erb within layouts/application (0.3ms)
11506
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
11507
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-22 17:15:39 +0700
11508
+ Processing by PostsController#new as HTML
11509
+ Parameters: {"view"=>"form_tag_helper"}
11510
+ Rendered posts/form_tag_helper.html.erb within layouts/application (1.8ms)
11511
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
11512
+ Started POST "/posts" for 127.0.0.1 at 2016-03-22 17:15:39 +0700
11513
+ Processing by PostsController#create as HTML
11514
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>"test"}, "x"=>"50", "y"=>"14", "view"=>"form_tag_helper"}
11515
+ Redirected to http://127.0.0.1:52199/posts/done
11516
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
11517
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-22 17:15:39 +0700
11518
+ Processing by PostsController#done as HTML
11519
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
11520
+ Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
11521
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-22 17:15:39 +0700
11522
+ Processing by PostsController#reload as HTML
11523
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
11524
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
11525
+  (0.1ms) rollback transaction
11526
+  (0.1ms) begin transaction
11527
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:39 +0700
11528
+ Processing by TopController#index as HTML
11529
+ Rendered top/index.html.erb within layouts/application (0.3ms)
11530
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
11531
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-22 17:15:39 +0700
11532
+ Processing by PostsController#new as HTML
11533
+ Parameters: {"view"=>"form_tag_helper"}
11534
+ Rendered posts/form_tag_helper.html.erb within layouts/application (2.3ms)
11535
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
11536
+ Started POST "/posts" for 127.0.0.1 at 2016-03-22 17:15:39 +0700
11537
+ Processing by PostsController#create as HTML
11538
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>""}, "commit"=>"submit_tag (with confirm)", "view"=>"form_tag_helper"}
11539
+ Rendered posts/form_tag_helper.html.erb within layouts/application (2.6ms)
11540
+ Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.0ms)
11541
+  (0.1ms) rollback transaction
11542
+  (0.1ms) begin transaction
11543
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:39 +0700
11544
+ Processing by TopController#index as HTML
11545
+ Rendered top/index.html.erb within layouts/application (0.4ms)
11546
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
11547
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-22 17:15:40 +0700
11548
+ Processing by PostsController#new as HTML
11549
+ Parameters: {"view"=>"form_tag_helper"}
11550
+ Rendered posts/form_tag_helper.html.erb within layouts/application (2.1ms)
11551
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
11552
+ Started POST "/posts" for 127.0.0.1 at 2016-03-22 17:15:40 +0700
11553
+ Processing by PostsController#create as HTML
11554
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>"test"}, "commit"=>"submit_tag (with confirm)", "view"=>"form_tag_helper"}
11555
+ Redirected to http://127.0.0.1:52199/posts/done
11556
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
11557
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-22 17:15:40 +0700
11558
+ Processing by PostsController#done as HTML
11559
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
11560
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
11561
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-22 17:15:40 +0700
11562
+ Processing by PostsController#reload as HTML
11563
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
11564
+ Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
11565
+  (0.1ms) rollback transaction
11566
+  (0.1ms) begin transaction
11567
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:40 +0700
11568
+ Processing by TopController#index as HTML
11569
+ Rendered top/index.html.erb within layouts/application (0.7ms)
11570
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
11571
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-22 17:15:40 +0700
11572
+ Processing by PostsController#new as HTML
11573
+ Parameters: {"view"=>"form_tag_helper"}
11574
+ Rendered posts/form_tag_helper.html.erb within layouts/application (2.6ms)
11575
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
11576
+ Started GET "/posts/src" for 127.0.0.1 at 2016-03-22 17:15:40 +0700
11577
+ Processing by PostsController#src as HTML
11578
+ Rendered posts/src.html.erb within layouts/application (0.3ms)
11579
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
11580
+ Started POST "/posts" for 127.0.0.1 at 2016-03-22 17:15:40 +0700
11581
+ Processing by PostsController#create as HTML
11582
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>""}, "commit"=>"submit_tag (with popup options)", "view"=>"form_tag_helper"}
11583
+ Rendered posts/form_tag_helper.html.erb within layouts/application (2.9ms)
11584
+ Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.0ms)
11585
+  (0.1ms) rollback transaction
11586
+  (0.1ms) begin transaction
11587
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:40 +0700
11588
+ Processing by TopController#index as HTML
11589
+ Rendered top/index.html.erb within layouts/application (0.7ms)
11590
+ Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
11591
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-22 17:15:40 +0700
11592
+ Processing by PostsController#new as HTML
11593
+ Parameters: {"view"=>"form_tag_helper"}
11594
+ Rendered posts/form_tag_helper.html.erb within layouts/application (2.4ms)
11595
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
11596
+ Started GET "/posts/src" for 127.0.0.1 at 2016-03-22 17:15:40 +0700
11597
+ Processing by PostsController#src as HTML
11598
+ Rendered posts/src.html.erb within layouts/application (0.1ms)
11599
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
11600
+ Started POST "/posts" for 127.0.0.1 at 2016-03-22 17:15:40 +0700
11601
+ Processing by PostsController#create as HTML
11602
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>"test"}, "commit"=>"submit_tag (with popup options)", "view"=>"form_tag_helper"}
11603
+ Redirected to http://127.0.0.1:52199/posts/done
11604
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
11605
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-22 17:15:40 +0700
11606
+ Processing by PostsController#done as HTML
11607
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
11608
+ Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
11609
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-22 17:15:40 +0700
11610
+ Processing by PostsController#reload as HTML
11611
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
11612
+ Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
11613
+  (0.1ms) rollback transaction
11614
+  (0.1ms) begin transaction
11615
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:41 +0700
11616
+ Processing by TopController#index as HTML
11617
+ Rendered top/index.html.erb within layouts/application (0.3ms)
11618
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
11619
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-22 17:15:41 +0700
11620
+ Processing by PostsController#new as HTML
11621
+ Parameters: {"view"=>"form_tag_helper"}
11622
+ Rendered posts/form_tag_helper.html.erb within layouts/application (2.4ms)
11623
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
11624
+ Started POST "/posts" for 127.0.0.1 at 2016-03-22 17:15:41 +0700
11625
+ Processing by PostsController#create as HTML
11626
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>"test"}, "view"=>"form_tag_helper"}
11627
+ Redirected to http://127.0.0.1:52199/posts/done
11628
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
11629
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-22 17:15:41 +0700
11630
+ Processing by PostsController#done as HTML
11631
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
11632
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
11633
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-22 17:15:41 +0700
11634
+ Processing by PostsController#reload as HTML
11635
+ Rendered posts/reload.html.erb within layouts/application (0.1ms)
11636
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
11637
+  (0.1ms) rollback transaction
11638
+  (0.1ms) begin transaction
11639
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:41 +0700
11640
+ Processing by TopController#index as HTML
11641
+ Rendered top/index.html.erb within layouts/application (0.6ms)
11642
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
11643
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-22 17:15:41 +0700
11644
+ Processing by PostsController#new as HTML
11645
+ Parameters: {"view"=>"form_tag_helper"}
11646
+ Rendered posts/form_tag_helper.html.erb within layouts/application (2.3ms)
11647
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
11648
+ Started POST "/posts" for 127.0.0.1 at 2016-03-22 17:15:41 +0700
11649
+ Processing by PostsController#create as HTML
11650
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>""}, "view"=>"form_tag_helper"}
11651
+ Rendered posts/form_tag_helper.html.erb within layouts/application (2.4ms)
11652
+ Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.0ms)
11653
+  (0.1ms) rollback transaction
11654
+  (0.1ms) begin transaction
11655
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:41 +0700
11656
+ Processing by TopController#index as HTML
11657
+ Rendered top/index.html.erb within layouts/application (0.4ms)
11658
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
11659
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-22 17:15:41 +0700
11660
+ Processing by PostsController#new as HTML
11661
+ Parameters: {"view"=>"form_tag_helper"}
11662
+ Rendered posts/form_tag_helper.html.erb within layouts/application (1.8ms)
11663
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
11664
+ Started POST "/posts?post%5Bbody%5D=OK" for 127.0.0.1 at 2016-03-22 17:15:42 +0700
11665
+ Processing by PostsController#create as HTML
11666
+ Parameters: {"post"=>{"body"=>"OK"}}
11667
+ Redirected to http://127.0.0.1:52199/posts/done
11668
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
11669
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-22 17:15:42 +0700
11670
+ Processing by PostsController#done as HTML
11671
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
11672
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
11673
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-22 17:15:42 +0700
11674
+ Processing by PostsController#reload as HTML
11675
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
11676
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
11677
+  (0.1ms) rollback transaction
11678
+  (0.1ms) begin transaction
11679
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:42 +0700
11680
+ Processing by TopController#index as HTML
11681
+ Rendered top/index.html.erb within layouts/application (0.5ms)
11682
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
11683
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-22 17:15:42 +0700
11684
+ Processing by PostsController#new as HTML
11685
+ Parameters: {"view"=>"form_tag_helper"}
11686
+ Rendered posts/form_tag_helper.html.erb within layouts/application (1.7ms)
11687
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
11688
+ Started POST "/posts" for 127.0.0.1 at 2016-03-22 17:15:42 +0700
11689
+ Processing by PostsController#create as HTML
11690
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>""}, "button"=>"", "view"=>"form_tag_helper"}
11691
+ Rendered posts/form_tag_helper.html.erb within layouts/application (1.7ms)
11692
+ Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 0.0ms)
11693
+  (0.1ms) rollback transaction
11694
+  (0.1ms) begin transaction
11695
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:42 +0700
11696
+ Processing by TopController#index as HTML
11697
+ Rendered top/index.html.erb within layouts/application (0.3ms)
11698
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
11699
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-22 17:15:42 +0700
11700
+ Processing by PostsController#new as HTML
11701
+ Parameters: {"view"=>"form_tag_helper"}
11702
+ Rendered posts/form_tag_helper.html.erb within layouts/application (1.6ms)
11703
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
11704
+ Started POST "/posts" for 127.0.0.1 at 2016-03-22 17:15:42 +0700
11705
+ Processing by PostsController#create as HTML
11706
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>"test"}, "button"=>"", "view"=>"form_tag_helper"}
11707
+ Redirected to http://127.0.0.1:52199/posts/done
11708
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
11709
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-22 17:15:42 +0700
11710
+ Processing by PostsController#done as HTML
11711
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
11712
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
11713
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-22 17:15:42 +0700
11714
+ Processing by PostsController#reload as HTML
11715
+ Rendered posts/reload.html.erb within layouts/application (0.1ms)
11716
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
11717
+  (0.1ms) rollback transaction
11718
+  (0.1ms) begin transaction
11719
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:42 +0700
11720
+ Processing by TopController#index as HTML
11721
+ Rendered top/index.html.erb within layouts/application (0.3ms)
11722
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
11723
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-22 17:15:43 +0700
11724
+ Processing by PostsController#new as HTML
11725
+ Parameters: {"view"=>"form_tag_helper"}
11726
+ Rendered posts/form_tag_helper.html.erb within layouts/application (1.8ms)
11727
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
11728
+ Started POST "/posts?post%5Bbody%5D=OK" for 127.0.0.1 at 2016-03-22 17:15:43 +0700
11729
+ Processing by PostsController#create as HTML
11730
+ Parameters: {"post"=>{"body"=>"OK"}}
11731
+ Redirected to http://127.0.0.1:52199/posts/done
11732
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
11733
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-22 17:15:43 +0700
11734
+ Processing by PostsController#done as HTML
11735
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
11736
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
11737
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-22 17:15:43 +0700
11738
+ Processing by PostsController#reload as HTML
11739
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
11740
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
11741
+  (0.1ms) rollback transaction
11742
+  (0.1ms) begin transaction
11743
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:43 +0700
11744
+ Processing by TopController#index as HTML
11745
+ Rendered top/index.html.erb within layouts/application (0.3ms)
11746
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
11747
+ Started GET "/posts/new?view=form_helper" for 127.0.0.1 at 2016-03-22 17:15:43 +0700
11748
+ Processing by PostsController#new as HTML
11749
+ Parameters: {"view"=>"form_helper"}
11750
+ Rendered posts/form_helper.html.erb within layouts/application (1.3ms)
11751
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
11752
+ Started POST "/posts" for 127.0.0.1 at 2016-03-22 17:15:43 +0700
11753
+ Processing by PostsController#create as HTML
11754
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>"test"}, "commit"=>"submit (with confirm)", "view"=>"form_helper"}
11755
+ Redirected to http://127.0.0.1:52199/posts/done
11756
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
11757
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-22 17:15:43 +0700
11758
+ Processing by PostsController#done as HTML
11759
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
11760
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
11761
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-22 17:15:43 +0700
11762
+ Processing by PostsController#reload as HTML
11763
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
11764
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
11765
+  (0.1ms) rollback transaction
11766
+  (0.1ms) begin transaction
11767
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:43 +0700
11768
+ Processing by TopController#index as HTML
11769
+ Rendered top/index.html.erb within layouts/application (0.3ms)
11770
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
11771
+ Started GET "/posts/new?view=form_helper" for 127.0.0.1 at 2016-03-22 17:15:43 +0700
11772
+ Processing by PostsController#new as HTML
11773
+ Parameters: {"view"=>"form_helper"}
11774
+ Rendered posts/form_helper.html.erb within layouts/application (0.7ms)
11775
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
11776
+ Started POST "/posts" for 127.0.0.1 at 2016-03-22 17:15:43 +0700
11777
+ Processing by PostsController#create as HTML
11778
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>""}, "commit"=>"submit (with confirm)", "view"=>"form_helper"}
11779
+ Rendered posts/form_helper.html.erb within layouts/application (0.6ms)
11780
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.0ms)
11781
+  (0.1ms) rollback transaction
11782
+  (0.1ms) begin transaction
11783
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:43 +0700
11784
+ Processing by TopController#index as HTML
11785
+ Rendered top/index.html.erb within layouts/application (0.3ms)
11786
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
11787
+ Started GET "/posts/new?view=form_helper" for 127.0.0.1 at 2016-03-22 17:15:44 +0700
11788
+ Processing by PostsController#new as HTML
11789
+ Parameters: {"view"=>"form_helper"}
11790
+ Rendered posts/form_helper.html.erb within layouts/application (0.6ms)
11791
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
11792
+ Started POST "/posts" for 127.0.0.1 at 2016-03-22 17:15:44 +0700
11793
+ Processing by PostsController#create as HTML
11794
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>""}, "commit"=>"submit (with popup_features)", "view"=>"form_helper"}
11795
+ Rendered posts/form_helper.html.erb within layouts/application (0.5ms)
11796
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
11797
+  (0.1ms) rollback transaction
11798
+  (0.1ms) begin transaction
11799
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:44 +0700
11800
+ Processing by TopController#index as HTML
11801
+ Rendered top/index.html.erb within layouts/application (0.3ms)
11802
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
11803
+ Started GET "/posts/new?view=form_helper" for 127.0.0.1 at 2016-03-22 17:15:44 +0700
11804
+ Processing by PostsController#new as HTML
11805
+ Parameters: {"view"=>"form_helper"}
11806
+ Rendered posts/form_helper.html.erb within layouts/application (0.6ms)
11807
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
11808
+ Started POST "/posts" for 127.0.0.1 at 2016-03-22 17:15:44 +0700
11809
+ Processing by PostsController#create as HTML
11810
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>"test"}, "commit"=>"submit (with popup_features)", "view"=>"form_helper"}
11811
+ Redirected to http://127.0.0.1:52199/posts/done
11812
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
11813
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-22 17:15:44 +0700
11814
+ Processing by PostsController#done as HTML
11815
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
11816
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
11817
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-22 17:15:44 +0700
11818
+ Processing by PostsController#reload as HTML
11819
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
11820
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
11821
+  (0.1ms) rollback transaction
11822
+  (0.1ms) begin transaction
11823
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:44 +0700
11824
+ Processing by TopController#index as HTML
11825
+ Rendered top/index.html.erb within layouts/application (0.3ms)
11826
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
11827
+ Started GET "/posts/new?view=form_helper" for 127.0.0.1 at 2016-03-22 17:15:44 +0700
11828
+ Processing by PostsController#new as HTML
11829
+ Parameters: {"view"=>"form_helper"}
11830
+ Rendered posts/form_helper.html.erb within layouts/application (0.6ms)
11831
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
11832
+ Started POST "/posts" for 127.0.0.1 at 2016-03-22 17:15:44 +0700
11833
+ Processing by PostsController#create as HTML
11834
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>"test"}, "commit"=>"submit", "view"=>"form_helper"}
11835
+ Redirected to http://127.0.0.1:52199/posts/done
11836
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
11837
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-22 17:15:44 +0700
11838
+ Processing by PostsController#done as HTML
11839
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
11840
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
11841
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-22 17:15:44 +0700
11842
+ Processing by PostsController#reload as HTML
11843
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
11844
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
11845
+  (0.1ms) rollback transaction
11846
+  (0.1ms) begin transaction
11847
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:45 +0700
11848
+ Processing by TopController#index as HTML
11849
+ Rendered top/index.html.erb within layouts/application (0.3ms)
11850
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
11851
+ Started GET "/posts/new?view=form_helper" for 127.0.0.1 at 2016-03-22 17:15:45 +0700
11852
+ Processing by PostsController#new as HTML
11853
+ Parameters: {"view"=>"form_helper"}
11854
+ Rendered posts/form_helper.html.erb within layouts/application (0.6ms)
11855
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
11856
+ Started POST "/posts" for 127.0.0.1 at 2016-03-22 17:15:45 +0700
11857
+ Processing by PostsController#create as HTML
11858
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>""}, "commit"=>"submit", "view"=>"form_helper"}
11859
+ Rendered posts/form_helper.html.erb within layouts/application (0.5ms)
11860
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
11861
+  (0.1ms) rollback transaction
11862
+  (0.1ms) begin transaction
11863
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:45 +0700
11864
+ Processing by TopController#index as HTML
11865
+ Rendered top/index.html.erb within layouts/application (0.3ms)
11866
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
11867
+ Started GET "/posts/new?view=form_helper" for 127.0.0.1 at 2016-03-22 17:15:45 +0700
11868
+ Processing by PostsController#new as HTML
11869
+ Parameters: {"view"=>"form_helper"}
11870
+ Rendered posts/form_helper.html.erb within layouts/application (0.6ms)
11871
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
11872
+ Started POST "/posts" for 127.0.0.1 at 2016-03-22 17:15:45 +0700
11873
+ Processing by PostsController#create as HTML
11874
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>"test"}, "button"=>"", "view"=>"form_helper"}
11875
+ Redirected to http://127.0.0.1:52199/posts/done
11876
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
11877
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-22 17:15:45 +0700
11878
+ Processing by PostsController#done as HTML
11879
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
11880
+ Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
11881
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-22 17:15:45 +0700
11882
+ Processing by PostsController#reload as HTML
11883
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
11884
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
11885
+  (0.1ms) rollback transaction
11886
+  (0.1ms) begin transaction
11887
+ Started GET "/" for 127.0.0.1 at 2016-03-22 17:15:45 +0700
11888
+ Processing by TopController#index as HTML
11889
+ Rendered top/index.html.erb within layouts/application (0.3ms)
11890
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
11891
+ Started GET "/posts/new?view=form_helper" for 127.0.0.1 at 2016-03-22 17:15:45 +0700
11892
+ Processing by PostsController#new as HTML
11893
+ Parameters: {"view"=>"form_helper"}
11894
+ Rendered posts/form_helper.html.erb within layouts/application (0.6ms)
11895
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
11896
+ Started POST "/posts" for 127.0.0.1 at 2016-03-22 17:15:46 +0700
11897
+ Processing by PostsController#create as HTML
11898
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>""}, "button"=>"", "view"=>"form_helper"}
11899
+ Rendered posts/form_helper.html.erb within layouts/application (0.6ms)
11900
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.0ms)
11901
+  (0.1ms) rollback transaction
data/spec/examples.txt CHANGED
@@ -1,26 +1,26 @@
1
1
  example_id | status | run_time |
2
2
  ---------------------------------------------------------- | ------ | --------------- |
3
- ./spec/features/form_helper_request_spec.rb[1:1:1:1:1] | passed | 0.35116 seconds |
4
- ./spec/features/form_helper_request_spec.rb[1:1:2:1:1] | passed | 0.36755 seconds |
5
- ./spec/features/form_helper_request_spec.rb[1:2:1:1:1] | passed | 0.35578 seconds |
6
- ./spec/features/form_helper_request_spec.rb[1:2:2:1:1] | passed | 0.38171 seconds |
7
- ./spec/features/form_helper_request_spec.rb[1:3:1:1:1] | passed | 0.3556 seconds |
8
- ./spec/features/form_helper_request_spec.rb[1:3:2:1:1] | passed | 0.3695 seconds |
9
- ./spec/features/form_helper_request_spec.rb[1:4:1:1:1] | passed | 0.3519 seconds |
10
- ./spec/features/form_helper_request_spec.rb[1:4:2:1:1] | passed | 0.41287 seconds |
11
- ./spec/features/form_tag_helper_request_spec.rb[1:1:1:1:1] | passed | 0.35407 seconds |
12
- ./spec/features/form_tag_helper_request_spec.rb[1:1:2:1:1] | passed | 0.38759 seconds |
13
- ./spec/features/form_tag_helper_request_spec.rb[1:2:1:1:1] | passed | 0.35952 seconds |
14
- ./spec/features/form_tag_helper_request_spec.rb[1:2:2:1:1] | passed | 0.37895 seconds |
15
- ./spec/features/form_tag_helper_request_spec.rb[1:3:1:1:1] | passed | 0.36409 seconds |
16
- ./spec/features/form_tag_helper_request_spec.rb[1:3:2:1:1] | passed | 0.37229 seconds |
17
- ./spec/features/form_tag_helper_request_spec.rb[1:4:1:1:1] | passed | 0.35909 seconds |
18
- ./spec/features/form_tag_helper_request_spec.rb[1:4:2:1:1] | passed | 0.36725 seconds |
19
- ./spec/features/form_tag_helper_request_spec.rb[1:5:1:1:1] | passed | 0.35664 seconds |
20
- ./spec/features/form_tag_helper_request_spec.rb[1:5:2:1:1] | passed | 0.40998 seconds |
21
- ./spec/features/form_tag_helper_request_spec.rb[1:6:1:1:1] | passed | 0.3483 seconds |
22
- ./spec/features/form_tag_helper_request_spec.rb[1:6:2:1:1] | passed | 0.36619 seconds |
23
- ./spec/features/form_tag_helper_request_spec.rb[1:7:1:1] | passed | 1.84 seconds |
24
- ./spec/features/form_tag_helper_request_spec.rb[1:8:1:1] | passed | 0.36652 seconds |
25
- ./spec/features/form_tag_helper_request_spec.rb[1:9:1:1] | passed | 0.36338 seconds |
26
- ./spec/features/form_tag_helper_request_spec.rb[1:10:1:1] | passed | 0.35862 seconds |
3
+ ./spec/features/form_helper_request_spec.rb[1:1:1:1:1] | passed | 0.35148 seconds |
4
+ ./spec/features/form_helper_request_spec.rb[1:1:2:1:1] | passed | 0.36647 seconds |
5
+ ./spec/features/form_helper_request_spec.rb[1:2:1:1:1] | passed | 0.35498 seconds |
6
+ ./spec/features/form_helper_request_spec.rb[1:2:2:1:1] | passed | 0.37661 seconds |
7
+ ./spec/features/form_helper_request_spec.rb[1:3:1:1:1] | passed | 0.3534 seconds |
8
+ ./spec/features/form_helper_request_spec.rb[1:3:2:1:1] | passed | 0.37377 seconds |
9
+ ./spec/features/form_helper_request_spec.rb[1:4:1:1:1] | passed | 0.35618 seconds |
10
+ ./spec/features/form_helper_request_spec.rb[1:4:2:1:1] | passed | 0.37135 seconds |
11
+ ./spec/features/form_tag_helper_request_spec.rb[1:1:1:1:1] | passed | 0.358 seconds |
12
+ ./spec/features/form_tag_helper_request_spec.rb[1:1:2:1:1] | passed | 0.37516 seconds |
13
+ ./spec/features/form_tag_helper_request_spec.rb[1:2:1:1:1] | passed | 0.35563 seconds |
14
+ ./spec/features/form_tag_helper_request_spec.rb[1:2:2:1:1] | passed | 0.38401 seconds |
15
+ ./spec/features/form_tag_helper_request_spec.rb[1:3:1:1:1] | passed | 0.35574 seconds |
16
+ ./spec/features/form_tag_helper_request_spec.rb[1:3:2:1:1] | passed | 0.37556 seconds |
17
+ ./spec/features/form_tag_helper_request_spec.rb[1:4:1:1:1] | passed | 0.35402 seconds |
18
+ ./spec/features/form_tag_helper_request_spec.rb[1:4:2:1:1] | passed | 0.40669 seconds |
19
+ ./spec/features/form_tag_helper_request_spec.rb[1:5:1:1:1] | passed | 0.3546 seconds |
20
+ ./spec/features/form_tag_helper_request_spec.rb[1:5:2:1:1] | passed | 0.36661 seconds |
21
+ ./spec/features/form_tag_helper_request_spec.rb[1:6:1:1:1] | passed | 0.36672 seconds |
22
+ ./spec/features/form_tag_helper_request_spec.rb[1:6:2:1:1] | passed | 0.38393 seconds |
23
+ ./spec/features/form_tag_helper_request_spec.rb[1:7:1:1] | passed | 2.19 seconds |
24
+ ./spec/features/form_tag_helper_request_spec.rb[1:8:1:1] | passed | 0.36618 seconds |
25
+ ./spec/features/form_tag_helper_request_spec.rb[1:9:1:1] | passed | 0.35664 seconds |
26
+ ./spec/features/form_tag_helper_request_spec.rb[1:10:1:1] | passed | 0.36317 seconds |
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: with_popup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - itmammoth