with_popup 0.0.6 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2c7ae72e6cf53813e7793f430f3dbffb2e0cf725
4
- data.tar.gz: 6d3be03e9ead36bdcead2431ee38a8cb0d222ac8
3
+ metadata.gz: cc6b4929c87d9fbf8e19da6de439b351694c44d1
4
+ data.tar.gz: 4d14b07853d5f74b8d715450b0a6ef51495a992b
5
5
  SHA512:
6
- metadata.gz: 56e57d88e08789feef936e6f6a200a492bb87654d308ba3a3cbf478bdb97fa3ea4c835ed163d27bf3bf0f5c29bc38663511a8dd3c1a41a89a850a3fe8c0f96f0
7
- data.tar.gz: b622aaa3e86952c74764af6a1b78c2269e631e669e27accc302fb972c8b33b057b4f1b3ce62bedb99bd19424d86a6cb2970e8a482c4f62aa81f5063fd41c8342
6
+ metadata.gz: 48ba97bf97b179835237567c3edfa41aeb98ceaef98bdd9f7c26dd1a2f8ea17377b04cf0510390db7a4261df7f9f9ca372c1e74e53647e86d4d4407c7478cba8
7
+ data.tar.gz: 94b7085a4ad81954ae98c9f2f44769398bec368325d0e3f2550393ee6ac5549ca25f130871a996a340b1c51376244f43a50f5dc483f24b0baf4909ef77efdb13
@@ -7,7 +7,7 @@ class WithPopup::Rack
7
7
  @env = env
8
8
  @status, @headers, @response = @app.call(env)
9
9
  return [@status, @headers, @response] unless need_injection?
10
- body = inject_js(@response.body)
10
+ body = inject_js_to_the_response
11
11
  clear_param!
12
12
  [@status, @headers, [body]]
13
13
  end
@@ -34,7 +34,8 @@ class WithPopup::Rack
34
34
  session.delete :_with_popup
35
35
  end
36
36
 
37
- def inject_js(body)
37
+ def inject_js_to_the_response
38
+ body = @response.try(:body) || @response.first
38
39
  js = popup_param == :close ? close_popup_js : reload_popup_js
39
40
  body.sub('</body>', js + '</body>')
40
41
  end
@@ -1,3 +1,3 @@
1
1
  module WithPopup
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
@@ -19158,3 +19158,81 @@ Started GET "/posts/reload" for ::1 at 2016-03-22 17:17:24 +0700
19158
19158
  Processing by PostsController#reload as HTML
19159
19159
  Rendered posts/reload.html.erb within layouts/application (0.0ms)
19160
19160
  Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms)
19161
+
19162
+
19163
+ Started GET "/" for ::1 at 2016-03-24 11:47:09 +0700
19164
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19165
+ Processing by TopController#index as HTML
19166
+ Rendered top/index.html.erb within layouts/application (3.1ms)
19167
+ Completed 200 OK in 382ms (Views: 381.2ms | ActiveRecord: 0.0ms)
19168
+
19169
+
19170
+ Started GET "/posts/new?view=form_tag_helper" for ::1 at 2016-03-24 11:47:11 +0700
19171
+ Processing by PostsController#new as HTML
19172
+ Parameters: {"view"=>"form_tag_helper"}
19173
+ Rendered posts/form_tag_helper.html.erb within layouts/application (24.6ms)
19174
+ Completed 200 OK in 59ms (Views: 50.0ms | ActiveRecord: 0.3ms)
19175
+
19176
+
19177
+ Started POST "/posts" for ::1 at 2016-03-24 11:47:13 +0700
19178
+ Processing by PostsController#create as HTML
19179
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"nOlgJkhS00ZA+I8/DuZBiGUlVJJT2Wd7z3/wnY3wPZbzAoq+lSRZJffdOeYwfOibdY/L82K3Tc7uVYy7T4z5/A==", "post"=>{"body"=>""}, "commit"=>"submit_tag (with popup options)", "view"=>"form_tag_helper"}
19180
+ Rendered posts/form_tag_helper.html.erb within layouts/application (3.4ms)
19181
+ Completed 200 OK in 47ms (Views: 23.7ms | ActiveRecord: 0.0ms)
19182
+
19183
+
19184
+ Started GET "/posts/src" for ::1 at 2016-03-24 11:47:13 +0700
19185
+ Processing by PostsController#src as HTML
19186
+ Rendered posts/src.html.erb within layouts/application (0.5ms)
19187
+ Completed 200 OK in 28ms (Views: 27.5ms | ActiveRecord: 0.0ms)
19188
+
19189
+
19190
+ Started POST "/posts" for ::1 at 2016-03-24 11:47:16 +0700
19191
+ Processing by PostsController#create as HTML
19192
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"OfSZZLY8CEFKR4GTP4U8FXuloYq3tQMD7TpL95eI3CVWH3P8a0qCIv1iN0oBH5UGaw8+64bbKbbMEDfRVfQYTw==", "post"=>{"body"=>"rr"}, "commit"=>"submit_tag (with popup options)", "view"=>"form_tag_helper"}
19193
+ Redirected to http://localhost:3000/posts/done
19194
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
19195
+
19196
+
19197
+ Started GET "/posts/src" for ::1 at 2016-03-24 11:47:16 +0700
19198
+ Processing by PostsController#src as HTML
19199
+ Rendered posts/src.html.erb within layouts/application (0.0ms)
19200
+ Completed 200 OK in 24ms (Views: 24.3ms | ActiveRecord: 0.0ms)
19201
+
19202
+
19203
+ Started GET "/posts/done" for ::1 at 2016-03-24 11:47:16 +0700
19204
+ Processing by PostsController#done as HTML
19205
+ Rendered posts/done.html.erb within layouts/application (0.7ms)
19206
+ Completed 200 OK in 41ms (Views: 40.4ms | ActiveRecord: 0.0ms)
19207
+
19208
+
19209
+ Started GET "/posts/reload" for ::1 at 2016-03-24 11:47:16 +0700
19210
+ Processing by PostsController#reload as HTML
19211
+ Rendered posts/reload.html.erb within layouts/application (0.5ms)
19212
+ Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.0ms)
19213
+
19214
+
19215
+ Started GET "/posts/reload" for ::1 at 2016-03-24 11:47:17 +0700
19216
+ Processing by PostsController#reload as HTML
19217
+ Rendered posts/reload.html.erb within layouts/application (0.1ms)
19218
+ Completed 200 OK in 18ms (Views: 18.2ms | ActiveRecord: 0.0ms)
19219
+
19220
+
19221
+ Started GET "/" for ::1 at 2016-03-24 11:47:19 +0700
19222
+ Processing by TopController#index as HTML
19223
+ Rendered top/index.html.erb within layouts/application (0.7ms)
19224
+ Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.0ms)
19225
+
19226
+
19227
+ Started GET "/posts/new?view=form_helper" for ::1 at 2016-03-24 11:47:21 +0700
19228
+ Processing by PostsController#new as HTML
19229
+ Parameters: {"view"=>"form_helper"}
19230
+ Rendered posts/form_helper.html.erb within layouts/application (1.7ms)
19231
+ Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.0ms)
19232
+
19233
+
19234
+ Started POST "/posts" for ::1 at 2016-03-24 11:47:22 +0700
19235
+ Processing by PostsController#create as HTML
19236
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"nn3SRsO7PND08Q8Awypqokzw2l/6FTaCIRLQCnOCe/TxljjeHs22s0PUudn9sMOxXFpFPst7HDcAOKwssf6/ng==", "post"=>{"body"=>""}, "commit"=>"submit (with popup_features)", "view"=>"form_helper"}
19237
+ Rendered posts/form_helper.html.erb within layouts/application (0.7ms)
19238
+ Completed 200 OK in 26ms (Views: 16.2ms | ActiveRecord: 0.0ms)
@@ -11899,3 +11899,511 @@ Processing by PostsController#create as HTML
11899
11899
  Rendered posts/form_helper.html.erb within layouts/application (0.6ms)
11900
11900
  Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.0ms)
11901
11901
   (0.1ms) rollback transaction
11902
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11903
+  (0.1ms) begin transaction
11904
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:41 +0700
11905
+ Processing by TopController#index as HTML
11906
+ Rendered top/index.html.erb within layouts/application (3.4ms)
11907
+ Completed 200 OK in 285ms (Views: 284.4ms | ActiveRecord: 0.0ms)
11908
+ Started GET "/assets/application-f9e7c1541e1b8783561468c59162bd896007380f5a3799ef2169d3a3fdf40bed.css" for 127.0.0.1 at 2016-03-24 11:46:42 +0700
11909
+ Started GET "/assets/application-05d3792b3ff34c253741c4dba847daee8f635b5183d2a6d924395629f09a9879.js" for 127.0.0.1 at 2016-03-24 11:46:42 +0700
11910
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-24 11:46:42 +0700
11911
+ Processing by PostsController#new as HTML
11912
+ Parameters: {"view"=>"form_tag_helper"}
11913
+ Rendered posts/form_tag_helper.html.erb within layouts/application (41.7ms)
11914
+ Completed 200 OK in 59ms (Views: 49.4ms | ActiveRecord: 0.6ms)
11915
+ Started GET "/assets/submit-69e7c02b7207f3a366bc4ea0be861ab507f0c3c5e2073224737fe4404e8af121.jpg" for 127.0.0.1 at 2016-03-24 11:46:42 +0700
11916
+ Started POST "/posts" for 127.0.0.1 at 2016-03-24 11:46:42 +0700
11917
+ Processing by PostsController#create as HTML
11918
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>""}, "button"=>"", "view"=>"form_tag_helper"}
11919
+ Rendered posts/form_tag_helper.html.erb within layouts/application (2.3ms)
11920
+ Completed 200 OK in 25ms (Views: 3.8ms | ActiveRecord: 0.0ms)
11921
+  (0.1ms) rollback transaction
11922
+  (0.1ms) begin transaction
11923
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:42 +0700
11924
+ Processing by TopController#index as HTML
11925
+ Rendered top/index.html.erb within layouts/application (0.3ms)
11926
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
11927
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-24 11:46:42 +0700
11928
+ Processing by PostsController#new as HTML
11929
+ Parameters: {"view"=>"form_tag_helper"}
11930
+ Rendered posts/form_tag_helper.html.erb within layouts/application (1.8ms)
11931
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
11932
+ Started POST "/posts" for 127.0.0.1 at 2016-03-24 11:46:42 +0700
11933
+ Processing by PostsController#create as HTML
11934
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>"test"}, "button"=>"", "view"=>"form_tag_helper"}
11935
+ Redirected to http://127.0.0.1:55648/posts/done
11936
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
11937
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-24 11:46:42 +0700
11938
+ Processing by PostsController#done as HTML
11939
+ Rendered posts/done.html.erb within layouts/application (0.7ms)
11940
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
11941
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-24 11:46:42 +0700
11942
+ Processing by PostsController#reload as HTML
11943
+ Rendered posts/reload.html.erb within layouts/application (0.4ms)
11944
+ Completed 200 OK in 4ms (Views: 4.3ms | ActiveRecord: 0.0ms)
11945
+  (0.1ms) rollback transaction
11946
+  (0.0ms) begin transaction
11947
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:42 +0700
11948
+ Processing by TopController#index as HTML
11949
+ Rendered top/index.html.erb within layouts/application (0.4ms)
11950
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
11951
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-24 11:46:43 +0700
11952
+ Processing by PostsController#new as HTML
11953
+ Parameters: {"view"=>"form_tag_helper"}
11954
+ Rendered posts/form_tag_helper.html.erb within layouts/application (1.9ms)
11955
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
11956
+ Started POST "/posts?post%5Bbody%5D=OK" for 127.0.0.1 at 2016-03-24 11:46:43 +0700
11957
+ Processing by PostsController#create as HTML
11958
+ Parameters: {"post"=>{"body"=>"OK"}}
11959
+ Redirected to http://127.0.0.1:55648/posts/done
11960
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
11961
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-24 11:46:43 +0700
11962
+ Processing by PostsController#done as HTML
11963
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
11964
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
11965
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-24 11:46:43 +0700
11966
+ Processing by PostsController#reload as HTML
11967
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
11968
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
11969
+  (0.1ms) rollback transaction
11970
+  (0.1ms) begin transaction
11971
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:43 +0700
11972
+ Processing by TopController#index as HTML
11973
+ Rendered top/index.html.erb within layouts/application (1.3ms)
11974
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
11975
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-24 11:46:43 +0700
11976
+ Processing by PostsController#new as HTML
11977
+ Parameters: {"view"=>"form_tag_helper"}
11978
+ Rendered posts/form_tag_helper.html.erb within layouts/application (3.5ms)
11979
+ Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
11980
+ Started POST "/posts?post%5Bbody%5D=OK" for 127.0.0.1 at 2016-03-24 11:46:43 +0700
11981
+ Processing by PostsController#create as HTML
11982
+ Parameters: {"post"=>{"body"=>"OK"}}
11983
+ Redirected to http://127.0.0.1:55648/posts/done
11984
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
11985
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-24 11:46:43 +0700
11986
+ Processing by PostsController#done as HTML
11987
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
11988
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
11989
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-24 11:46:43 +0700
11990
+ Processing by PostsController#reload as HTML
11991
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
11992
+ Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
11993
+  (0.1ms) rollback transaction
11994
+  (0.1ms) begin transaction
11995
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:43 +0700
11996
+ Processing by TopController#index as HTML
11997
+ Rendered top/index.html.erb within layouts/application (0.3ms)
11998
+ Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
11999
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-24 11:46:43 +0700
12000
+ Processing by PostsController#new as HTML
12001
+ Parameters: {"view"=>"form_tag_helper"}
12002
+ Rendered posts/form_tag_helper.html.erb within layouts/application (2.7ms)
12003
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
12004
+ Started POST "/posts" for 127.0.0.1 at 2016-03-24 11:46:43 +0700
12005
+ Processing by PostsController#create as HTML
12006
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>""}, "commit"=>"submit_tag", "view"=>"form_tag_helper"}
12007
+ Rendered posts/form_tag_helper.html.erb within layouts/application (3.0ms)
12008
+ Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.0ms)
12009
+  (0.1ms) rollback transaction
12010
+  (0.1ms) begin transaction
12011
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:44 +0700
12012
+ Processing by TopController#index as HTML
12013
+ Rendered top/index.html.erb within layouts/application (0.4ms)
12014
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
12015
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-24 11:46:44 +0700
12016
+ Processing by PostsController#new as HTML
12017
+ Parameters: {"view"=>"form_tag_helper"}
12018
+ Rendered posts/form_tag_helper.html.erb within layouts/application (2.7ms)
12019
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.0ms)
12020
+ Started POST "/posts" for 127.0.0.1 at 2016-03-24 11:46:44 +0700
12021
+ Processing by PostsController#create as HTML
12022
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>"test"}, "commit"=>"submit_tag", "view"=>"form_tag_helper"}
12023
+ Redirected to http://127.0.0.1:55648/posts/done
12024
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
12025
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-24 11:46:44 +0700
12026
+ Processing by PostsController#done as HTML
12027
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
12028
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
12029
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-24 11:46:44 +0700
12030
+ Processing by PostsController#reload as HTML
12031
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
12032
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
12033
+  (0.1ms) rollback transaction
12034
+  (0.1ms) begin transaction
12035
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:44 +0700
12036
+ Processing by TopController#index as HTML
12037
+ Rendered top/index.html.erb within layouts/application (0.4ms)
12038
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
12039
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-24 11:46:44 +0700
12040
+ Processing by PostsController#new as HTML
12041
+ Parameters: {"view"=>"form_tag_helper"}
12042
+ Rendered posts/form_tag_helper.html.erb within layouts/application (2.2ms)
12043
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
12044
+ Started POST "/posts" for 127.0.0.1 at 2016-03-24 11:46:44 +0700
12045
+ Processing by PostsController#create as HTML
12046
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>"test"}, "x"=>"50", "y"=>"14", "view"=>"form_tag_helper"}
12047
+ Redirected to http://127.0.0.1:55648/posts/done
12048
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
12049
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-24 11:46:44 +0700
12050
+ Processing by PostsController#done as HTML
12051
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
12052
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
12053
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-24 11:46:44 +0700
12054
+ Processing by PostsController#reload as HTML
12055
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
12056
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
12057
+  (0.1ms) rollback transaction
12058
+  (0.1ms) begin transaction
12059
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:44 +0700
12060
+ Processing by TopController#index as HTML
12061
+ Rendered top/index.html.erb within layouts/application (0.5ms)
12062
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
12063
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-24 11:46:45 +0700
12064
+ Processing by PostsController#new as HTML
12065
+ Parameters: {"view"=>"form_tag_helper"}
12066
+ Rendered posts/form_tag_helper.html.erb within layouts/application (2.3ms)
12067
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
12068
+ Started POST "/posts" for 127.0.0.1 at 2016-03-24 11:46:45 +0700
12069
+ Processing by PostsController#create as HTML
12070
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>""}, "x"=>"50", "y"=>"14", "view"=>"form_tag_helper"}
12071
+ Rendered posts/form_tag_helper.html.erb within layouts/application (1.8ms)
12072
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
12073
+  (0.1ms) rollback transaction
12074
+  (0.1ms) begin transaction
12075
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:45 +0700
12076
+ Processing by TopController#index as HTML
12077
+ Rendered top/index.html.erb within layouts/application (0.4ms)
12078
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
12079
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-24 11:46:45 +0700
12080
+ Processing by PostsController#new as HTML
12081
+ Parameters: {"view"=>"form_tag_helper"}
12082
+ Rendered posts/form_tag_helper.html.erb within layouts/application (1.9ms)
12083
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
12084
+ Started POST "/posts?post%5Bbody%5D=OK" for 127.0.0.1 at 2016-03-24 11:46:45 +0700
12085
+ Processing by PostsController#create as HTML
12086
+ Parameters: {"post"=>{"body"=>"OK"}}
12087
+ Redirected to http://127.0.0.1:55648/posts/done
12088
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
12089
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-24 11:46:45 +0700
12090
+ Processing by PostsController#done as HTML
12091
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
12092
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
12093
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-24 11:46:45 +0700
12094
+ Processing by PostsController#reload as HTML
12095
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
12096
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
12097
+  (0.1ms) rollback transaction
12098
+  (0.1ms) begin transaction
12099
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:45 +0700
12100
+ Processing by TopController#index as HTML
12101
+ Rendered top/index.html.erb within layouts/application (0.3ms)
12102
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
12103
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-24 11:46:45 +0700
12104
+ Processing by PostsController#new as HTML
12105
+ Parameters: {"view"=>"form_tag_helper"}
12106
+ Rendered posts/form_tag_helper.html.erb within layouts/application (2.2ms)
12107
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
12108
+ Started POST "/posts" for 127.0.0.1 at 2016-03-24 11:46:45 +0700
12109
+ Processing by PostsController#create as HTML
12110
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>"test"}, "view"=>"form_tag_helper"}
12111
+ Redirected to http://127.0.0.1:55648/posts/done
12112
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
12113
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-24 11:46:45 +0700
12114
+ Processing by PostsController#done as HTML
12115
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
12116
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
12117
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-24 11:46:45 +0700
12118
+ Processing by PostsController#reload as HTML
12119
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
12120
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
12121
+  (0.1ms) rollback transaction
12122
+  (0.1ms) begin transaction
12123
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:46 +0700
12124
+ Processing by TopController#index as HTML
12125
+ Rendered top/index.html.erb within layouts/application (0.3ms)
12126
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
12127
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-24 11:46:46 +0700
12128
+ Processing by PostsController#new as HTML
12129
+ Parameters: {"view"=>"form_tag_helper"}
12130
+ Rendered posts/form_tag_helper.html.erb within layouts/application (1.7ms)
12131
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
12132
+ Started POST "/posts" for 127.0.0.1 at 2016-03-24 11:46:46 +0700
12133
+ Processing by PostsController#create as HTML
12134
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>""}, "view"=>"form_tag_helper"}
12135
+ Rendered posts/form_tag_helper.html.erb within layouts/application (1.5ms)
12136
+ Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.0ms)
12137
+  (0.1ms) rollback transaction
12138
+  (0.1ms) begin transaction
12139
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:46 +0700
12140
+ Processing by TopController#index as HTML
12141
+ Rendered top/index.html.erb within layouts/application (0.3ms)
12142
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
12143
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-24 11:46:46 +0700
12144
+ Processing by PostsController#new as HTML
12145
+ Parameters: {"view"=>"form_tag_helper"}
12146
+ Rendered posts/form_tag_helper.html.erb within layouts/application (1.6ms)
12147
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
12148
+ Started POST "/posts?post%5Bbody%5D=OK" for 127.0.0.1 at 2016-03-24 11:46:46 +0700
12149
+ Processing by PostsController#create as HTML
12150
+ Parameters: {"post"=>{"body"=>"OK"}}
12151
+ Redirected to http://127.0.0.1:55648/posts/done
12152
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
12153
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-24 11:46:46 +0700
12154
+ Processing by PostsController#done as HTML
12155
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
12156
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
12157
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-24 11:46:46 +0700
12158
+ Processing by PostsController#reload as HTML
12159
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
12160
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
12161
+  (0.1ms) rollback transaction
12162
+  (0.1ms) begin transaction
12163
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:46 +0700
12164
+ Processing by TopController#index as HTML
12165
+ Rendered top/index.html.erb within layouts/application (0.3ms)
12166
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
12167
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-24 11:46:46 +0700
12168
+ Processing by PostsController#new as HTML
12169
+ Parameters: {"view"=>"form_tag_helper"}
12170
+ Rendered posts/form_tag_helper.html.erb within layouts/application (1.6ms)
12171
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
12172
+ Started GET "/posts/src" for 127.0.0.1 at 2016-03-24 11:46:47 +0700
12173
+ Processing by PostsController#src as HTML
12174
+ Rendered posts/src.html.erb within layouts/application (0.4ms)
12175
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
12176
+ Started POST "/posts" for 127.0.0.1 at 2016-03-24 11:46:47 +0700
12177
+ Processing by PostsController#create as HTML
12178
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>"test"}, "commit"=>"submit_tag (with popup options)", "view"=>"form_tag_helper"}
12179
+ Redirected to http://127.0.0.1:55648/posts/done
12180
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
12181
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-24 11:46:47 +0700
12182
+ Processing by PostsController#done as HTML
12183
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
12184
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
12185
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-24 11:46:47 +0700
12186
+ Processing by PostsController#reload as HTML
12187
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
12188
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
12189
+  (0.1ms) rollback transaction
12190
+  (0.0ms) begin transaction
12191
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:47 +0700
12192
+ Processing by TopController#index as HTML
12193
+ Rendered top/index.html.erb within layouts/application (0.3ms)
12194
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
12195
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-24 11:46:47 +0700
12196
+ Processing by PostsController#new as HTML
12197
+ Parameters: {"view"=>"form_tag_helper"}
12198
+ Rendered posts/form_tag_helper.html.erb within layouts/application (1.8ms)
12199
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
12200
+ Started GET "/posts/src" for 127.0.0.1 at 2016-03-24 11:46:47 +0700
12201
+ Processing by PostsController#src as HTML
12202
+ Rendered posts/src.html.erb within layouts/application (0.0ms)
12203
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
12204
+ Started POST "/posts" for 127.0.0.1 at 2016-03-24 11:46:47 +0700
12205
+ Processing by PostsController#create as HTML
12206
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>""}, "commit"=>"submit_tag (with popup options)", "view"=>"form_tag_helper"}
12207
+ Rendered posts/form_tag_helper.html.erb within layouts/application (3.3ms)
12208
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.0ms)
12209
+  (0.1ms) rollback transaction
12210
+  (0.1ms) begin transaction
12211
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:47 +0700
12212
+ Processing by TopController#index as HTML
12213
+ Rendered top/index.html.erb within layouts/application (0.3ms)
12214
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
12215
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-24 11:46:47 +0700
12216
+ Processing by PostsController#new as HTML
12217
+ Parameters: {"view"=>"form_tag_helper"}
12218
+ Rendered posts/form_tag_helper.html.erb within layouts/application (2.0ms)
12219
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
12220
+ Started POST "/posts" for 127.0.0.1 at 2016-03-24 11:46:47 +0700
12221
+ Processing by PostsController#create as HTML
12222
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>"test"}, "commit"=>"submit_tag (with confirm)", "view"=>"form_tag_helper"}
12223
+ Redirected to http://127.0.0.1:55648/posts/done
12224
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
12225
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-24 11:46:47 +0700
12226
+ Processing by PostsController#done as HTML
12227
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
12228
+ Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
12229
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-24 11:46:47 +0700
12230
+ Processing by PostsController#reload as HTML
12231
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
12232
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
12233
+  (0.1ms) rollback transaction
12234
+  (0.1ms) begin transaction
12235
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:47 +0700
12236
+ Processing by TopController#index as HTML
12237
+ Rendered top/index.html.erb within layouts/application (0.3ms)
12238
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
12239
+ Started GET "/posts/new?view=form_tag_helper" for 127.0.0.1 at 2016-03-24 11:46:48 +0700
12240
+ Processing by PostsController#new as HTML
12241
+ Parameters: {"view"=>"form_tag_helper"}
12242
+ Rendered posts/form_tag_helper.html.erb within layouts/application (1.7ms)
12243
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
12244
+ Started POST "/posts" for 127.0.0.1 at 2016-03-24 11:46:48 +0700
12245
+ Processing by PostsController#create as HTML
12246
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>""}, "commit"=>"submit_tag (with confirm)", "view"=>"form_tag_helper"}
12247
+ Rendered posts/form_tag_helper.html.erb within layouts/application (1.6ms)
12248
+ Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 0.0ms)
12249
+  (0.1ms) rollback transaction
12250
+  (0.1ms) begin transaction
12251
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:48 +0700
12252
+ Processing by TopController#index as HTML
12253
+ Rendered top/index.html.erb within layouts/application (0.4ms)
12254
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
12255
+ Started GET "/posts/new?view=form_helper" for 127.0.0.1 at 2016-03-24 11:46:48 +0700
12256
+ Processing by PostsController#new as HTML
12257
+ Parameters: {"view"=>"form_helper"}
12258
+ Rendered posts/form_helper.html.erb within layouts/application (1.5ms)
12259
+ Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
12260
+ Started POST "/posts" for 127.0.0.1 at 2016-03-24 11:46:48 +0700
12261
+ Processing by PostsController#create as HTML
12262
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>""}, "commit"=>"submit", "view"=>"form_helper"}
12263
+ Rendered posts/form_helper.html.erb within layouts/application (0.6ms)
12264
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
12265
+  (0.1ms) rollback transaction
12266
+  (0.1ms) begin transaction
12267
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:48 +0700
12268
+ Processing by TopController#index as HTML
12269
+ Rendered top/index.html.erb within layouts/application (0.4ms)
12270
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
12271
+ Started GET "/posts/new?view=form_helper" for 127.0.0.1 at 2016-03-24 11:46:48 +0700
12272
+ Processing by PostsController#new as HTML
12273
+ Parameters: {"view"=>"form_helper"}
12274
+ Rendered posts/form_helper.html.erb within layouts/application (0.8ms)
12275
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
12276
+ Started POST "/posts" for 127.0.0.1 at 2016-03-24 11:46:48 +0700
12277
+ Processing by PostsController#create as HTML
12278
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>"test"}, "commit"=>"submit", "view"=>"form_helper"}
12279
+ Redirected to http://127.0.0.1:55648/posts/done
12280
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
12281
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-24 11:46:48 +0700
12282
+ Processing by PostsController#done as HTML
12283
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
12284
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
12285
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-24 11:46:48 +0700
12286
+ Processing by PostsController#reload as HTML
12287
+ Rendered posts/reload.html.erb within layouts/application (0.1ms)
12288
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
12289
+  (0.1ms) rollback transaction
12290
+  (0.1ms) begin transaction
12291
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:49 +0700
12292
+ Processing by TopController#index as HTML
12293
+ Rendered top/index.html.erb within layouts/application (0.4ms)
12294
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
12295
+ Started GET "/posts/new?view=form_helper" for 127.0.0.1 at 2016-03-24 11:46:49 +0700
12296
+ Processing by PostsController#new as HTML
12297
+ Parameters: {"view"=>"form_helper"}
12298
+ Rendered posts/form_helper.html.erb within layouts/application (0.7ms)
12299
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
12300
+ Started POST "/posts" for 127.0.0.1 at 2016-03-24 11:46:49 +0700
12301
+ Processing by PostsController#create as HTML
12302
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>""}, "button"=>"", "view"=>"form_helper"}
12303
+ Rendered posts/form_helper.html.erb within layouts/application (0.7ms)
12304
+ Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.0ms)
12305
+  (0.1ms) rollback transaction
12306
+  (0.1ms) begin transaction
12307
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:49 +0700
12308
+ Processing by TopController#index as HTML
12309
+ Rendered top/index.html.erb within layouts/application (0.3ms)
12310
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
12311
+ Started GET "/posts/new?view=form_helper" for 127.0.0.1 at 2016-03-24 11:46:49 +0700
12312
+ Processing by PostsController#new as HTML
12313
+ Parameters: {"view"=>"form_helper"}
12314
+ Rendered posts/form_helper.html.erb within layouts/application (0.7ms)
12315
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
12316
+ Started POST "/posts" for 127.0.0.1 at 2016-03-24 11:46:49 +0700
12317
+ Processing by PostsController#create as HTML
12318
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>"test"}, "button"=>"", "view"=>"form_helper"}
12319
+ Redirected to http://127.0.0.1:55648/posts/done
12320
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
12321
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-24 11:46:49 +0700
12322
+ Processing by PostsController#done as HTML
12323
+ Rendered posts/done.html.erb within layouts/application (0.3ms)
12324
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
12325
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-24 11:46:49 +0700
12326
+ Processing by PostsController#reload as HTML
12327
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
12328
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
12329
+  (0.1ms) rollback transaction
12330
+  (0.1ms) begin transaction
12331
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:49 +0700
12332
+ Processing by TopController#index as HTML
12333
+ Rendered top/index.html.erb within layouts/application (0.7ms)
12334
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
12335
+ Started GET "/posts/new?view=form_helper" for 127.0.0.1 at 2016-03-24 11:46:49 +0700
12336
+ Processing by PostsController#new as HTML
12337
+ Parameters: {"view"=>"form_helper"}
12338
+ Rendered posts/form_helper.html.erb within layouts/application (0.6ms)
12339
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
12340
+ Started POST "/posts" for 127.0.0.1 at 2016-03-24 11:46:50 +0700
12341
+ Processing by PostsController#create as HTML
12342
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>"test"}, "commit"=>"submit (with popup_features)", "view"=>"form_helper"}
12343
+ Redirected to http://127.0.0.1:55648/posts/done
12344
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
12345
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-24 11:46:50 +0700
12346
+ Processing by PostsController#done as HTML
12347
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
12348
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
12349
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-24 11:46:50 +0700
12350
+ Processing by PostsController#reload as HTML
12351
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
12352
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
12353
+  (0.1ms) rollback transaction
12354
+  (0.1ms) begin transaction
12355
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:50 +0700
12356
+ Processing by TopController#index as HTML
12357
+ Rendered top/index.html.erb within layouts/application (0.3ms)
12358
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
12359
+ Started GET "/posts/new?view=form_helper" for 127.0.0.1 at 2016-03-24 11:46:50 +0700
12360
+ Processing by PostsController#new as HTML
12361
+ Parameters: {"view"=>"form_helper"}
12362
+ Rendered posts/form_helper.html.erb within layouts/application (0.6ms)
12363
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
12364
+ Started POST "/posts" for 127.0.0.1 at 2016-03-24 11:46:50 +0700
12365
+ Processing by PostsController#create as HTML
12366
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>""}, "commit"=>"submit (with popup_features)", "view"=>"form_helper"}
12367
+ Rendered posts/form_helper.html.erb within layouts/application (0.8ms)
12368
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
12369
+  (0.1ms) rollback transaction
12370
+  (0.1ms) begin transaction
12371
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:50 +0700
12372
+ Processing by TopController#index as HTML
12373
+ Rendered top/index.html.erb within layouts/application (0.3ms)
12374
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
12375
+ Started GET "/posts/new?view=form_helper" for 127.0.0.1 at 2016-03-24 11:46:50 +0700
12376
+ Processing by PostsController#new as HTML
12377
+ Parameters: {"view"=>"form_helper"}
12378
+ Rendered posts/form_helper.html.erb within layouts/application (0.7ms)
12379
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
12380
+ Started POST "/posts" for 127.0.0.1 at 2016-03-24 11:46:50 +0700
12381
+ Processing by PostsController#create as HTML
12382
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>""}, "commit"=>"submit (with confirm)", "view"=>"form_helper"}
12383
+ Rendered posts/form_helper.html.erb within layouts/application (0.5ms)
12384
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.0ms)
12385
+  (0.1ms) rollback transaction
12386
+  (0.1ms) begin transaction
12387
+ Started GET "/" for 127.0.0.1 at 2016-03-24 11:46:50 +0700
12388
+ Processing by TopController#index as HTML
12389
+ Rendered top/index.html.erb within layouts/application (0.3ms)
12390
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
12391
+ Started GET "/posts/new?view=form_helper" for 127.0.0.1 at 2016-03-24 11:46:50 +0700
12392
+ Processing by PostsController#new as HTML
12393
+ Parameters: {"view"=>"form_helper"}
12394
+ Rendered posts/form_helper.html.erb within layouts/application (0.6ms)
12395
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
12396
+ Started POST "/posts" for 127.0.0.1 at 2016-03-24 11:46:51 +0700
12397
+ Processing by PostsController#create as HTML
12398
+ Parameters: {"utf8"=>"✓", "post"=>{"body"=>"test"}, "commit"=>"submit (with confirm)", "view"=>"form_helper"}
12399
+ Redirected to http://127.0.0.1:55648/posts/done
12400
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
12401
+ Started GET "/posts/done" for 127.0.0.1 at 2016-03-24 11:46:51 +0700
12402
+ Processing by PostsController#done as HTML
12403
+ Rendered posts/done.html.erb within layouts/application (0.1ms)
12404
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
12405
+ Started GET "/posts/reload" for 127.0.0.1 at 2016-03-24 11:46:51 +0700
12406
+ Processing by PostsController#reload as HTML
12407
+ Rendered posts/reload.html.erb within layouts/application (0.0ms)
12408
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
12409
+  (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.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 |
3
+ ./spec/features/form_helper_request_spec.rb[1:1:1:1:1] | passed | 0.35892 seconds |
4
+ ./spec/features/form_helper_request_spec.rb[1:1:2:1:1] | passed | 0.37597 seconds |
5
+ ./spec/features/form_helper_request_spec.rb[1:2:1:1:1] | passed | 0.35579 seconds |
6
+ ./spec/features/form_helper_request_spec.rb[1:2:2:1:1] | passed | 0.36278 seconds |
7
+ ./spec/features/form_helper_request_spec.rb[1:3:1:1:1] | passed | 0.36336 seconds |
8
+ ./spec/features/form_helper_request_spec.rb[1:3:2:1:1] | passed | 0.36575 seconds |
9
+ ./spec/features/form_helper_request_spec.rb[1:4:1:1:1] | passed | 0.36313 seconds |
10
+ ./spec/features/form_helper_request_spec.rb[1:4:2:1:1] | passed | 0.37393 seconds |
11
+ ./spec/features/form_tag_helper_request_spec.rb[1:1:1:1:1] | passed | 0.37839 seconds |
12
+ ./spec/features/form_tag_helper_request_spec.rb[1:1:2:1:1] | passed | 0.43263 seconds |
13
+ ./spec/features/form_tag_helper_request_spec.rb[1:2:1:1:1] | passed | 0.38794 seconds |
14
+ ./spec/features/form_tag_helper_request_spec.rb[1:2:2:1:1] | passed | 0.37972 seconds |
15
+ ./spec/features/form_tag_helper_request_spec.rb[1:3:1:1:1] | passed | 0.3588 seconds |
16
+ ./spec/features/form_tag_helper_request_spec.rb[1:3:2:1:1] | passed | 0.37231 seconds |
17
+ ./spec/features/form_tag_helper_request_spec.rb[1:4:1:1:1] | passed | 0.35866 seconds |
18
+ ./spec/features/form_tag_helper_request_spec.rb[1:4:2:1:1] | passed | 0.36741 seconds |
19
+ ./spec/features/form_tag_helper_request_spec.rb[1:5:1:1:1] | passed | 2.93 seconds |
20
+ ./spec/features/form_tag_helper_request_spec.rb[1:5:2:1:1] | passed | 0.38158 seconds |
21
+ ./spec/features/form_tag_helper_request_spec.rb[1:6:1:1:1] | passed | 0.39603 seconds |
22
+ ./spec/features/form_tag_helper_request_spec.rb[1:6:2:1:1] | passed | 0.37323 seconds |
23
+ ./spec/features/form_tag_helper_request_spec.rb[1:7:1:1] | passed | 0.37976 seconds |
24
+ ./spec/features/form_tag_helper_request_spec.rb[1:8:1:1] | passed | 0.37511 seconds |
25
+ ./spec/features/form_tag_helper_request_spec.rb[1:9:1:1] | passed | 0.38978 seconds |
26
+ ./spec/features/form_tag_helper_request_spec.rb[1:10:1:1] | passed | 0.35902 seconds |
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: with_popup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - itmammoth
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-22 00:00:00.000000000 Z
11
+ date: 2016-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails