sweet-alert-confirm 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (138) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +10 -0
  3. data/.travis.yml +18 -0
  4. data/Gemfile +41 -0
  5. data/MIT-LICENSE +20 -0
  6. data/README.md +26 -0
  7. data/Rakefile +12 -0
  8. data/lib/assets/javascripts/sweet-alert-confirm.js +60 -0
  9. data/lib/assets/stylesheets/sweet-alert-confirm.css +3 -0
  10. data/lib/sweet-alert-confirm/rails/engine.rb +6 -0
  11. data/lib/sweet-alert-confirm/railtie.rb +8 -0
  12. data/lib/sweet-alert-confirm/version.rb +3 -0
  13. data/lib/sweet-alert-confirm/view_helpers.rb +14 -0
  14. data/lib/sweet-alert-confirm.rb +6 -0
  15. data/spec/dummy/.gitignore +2 -0
  16. data/spec/dummy/.rspec +1 -0
  17. data/spec/dummy/README.rdoc +28 -0
  18. data/spec/dummy/Rakefile +6 -0
  19. data/spec/dummy/app/assets/images/.keep +0 -0
  20. data/spec/dummy/app/assets/javascripts/application.js +17 -0
  21. data/spec/dummy/app/assets/javascripts/confirms.js +2 -0
  22. data/spec/dummy/app/assets/stylesheets/application.css +16 -0
  23. data/spec/dummy/app/assets/stylesheets/application.scss.css +16 -0
  24. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  25. data/spec/dummy/app/controllers/concerns/.keep +0 -0
  26. data/spec/dummy/app/controllers/confirms_controller.rb +9 -0
  27. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  28. data/spec/dummy/app/mailers/.keep +0 -0
  29. data/spec/dummy/app/models/.keep +0 -0
  30. data/spec/dummy/app/models/concerns/.keep +0 -0
  31. data/spec/dummy/app/views/confirms/delete_cow.html.erb +1 -0
  32. data/spec/dummy/app/views/confirms/delete_cow.js.erb +1 -0
  33. data/spec/dummy/app/views/confirms/get_cow.html.erb +1 -0
  34. data/spec/dummy/app/views/confirms/index.html.erb +3 -0
  35. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  36. data/spec/dummy/bin/bundle +3 -0
  37. data/spec/dummy/bin/rails +4 -0
  38. data/spec/dummy/bin/rake +4 -0
  39. data/spec/dummy/config/application.rb +29 -0
  40. data/spec/dummy/config/boot.rb +5 -0
  41. data/spec/dummy/config/database.yml +25 -0
  42. data/spec/dummy/config/environment.rb +5 -0
  43. data/spec/dummy/config/environments/development.rb +37 -0
  44. data/spec/dummy/config/environments/production.rb +78 -0
  45. data/spec/dummy/config/environments/test.rb +43 -0
  46. data/spec/dummy/config/initializers/assets.rb +8 -0
  47. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  48. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  49. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  50. data/spec/dummy/config/initializers/inflections.rb +16 -0
  51. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  52. data/spec/dummy/config/initializers/secret_token.rb +1 -0
  53. data/spec/dummy/config/initializers/session_store.rb +3 -0
  54. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  55. data/spec/dummy/config/locales/en.yml +23 -0
  56. data/spec/dummy/config/routes.rb +59 -0
  57. data/spec/dummy/config/secrets.yml +22 -0
  58. data/spec/dummy/config.ru +4 -0
  59. data/spec/dummy/lib/assets/.keep +0 -0
  60. data/spec/dummy/log/.keep +0 -0
  61. data/spec/dummy/public/404.html +67 -0
  62. data/spec/dummy/public/422.html +67 -0
  63. data/spec/dummy/public/500.html +66 -0
  64. data/spec/dummy/public/favicon.ico +0 -0
  65. data/spec/dummy-rails3/.DS_Store +0 -0
  66. data/spec/dummy-rails3/README.rdoc +261 -0
  67. data/spec/dummy-rails3/Rakefile +7 -0
  68. data/spec/dummy-rails3/app/.DS_Store +0 -0
  69. data/spec/dummy-rails3/app/assets/.DS_Store +0 -0
  70. data/spec/dummy-rails3/app/assets/javascripts/application.js +17 -0
  71. data/spec/dummy-rails3/app/assets/stylesheets/application.css +16 -0
  72. data/spec/dummy-rails3/app/assets/stylesheets/application.scss.css +16 -0
  73. data/spec/dummy-rails3/app/controllers/application_controller.rb +3 -0
  74. data/spec/dummy-rails3/app/controllers/confirms_controller.rb +9 -0
  75. data/spec/dummy-rails3/app/helpers/application_helper.rb +2 -0
  76. data/spec/dummy-rails3/app/mailers/.gitkeep +0 -0
  77. data/spec/dummy-rails3/app/models/.gitkeep +0 -0
  78. data/spec/dummy-rails3/app/views/confirms/delete_cow.html.erb +1 -0
  79. data/spec/dummy-rails3/app/views/confirms/delete_cow.js.erb +1 -0
  80. data/spec/dummy-rails3/app/views/confirms/get_cow.html.erb +1 -0
  81. data/spec/dummy-rails3/app/views/confirms/index.html.erb +3 -0
  82. data/spec/dummy-rails3/app/views/layouts/application.html.erb +14 -0
  83. data/spec/dummy-rails3/config/application.rb +65 -0
  84. data/spec/dummy-rails3/config/boot.rb +10 -0
  85. data/spec/dummy-rails3/config/database.yml +25 -0
  86. data/spec/dummy-rails3/config/environment.rb +5 -0
  87. data/spec/dummy-rails3/config/environments/development.rb +37 -0
  88. data/spec/dummy-rails3/config/environments/production.rb +67 -0
  89. data/spec/dummy-rails3/config/environments/test.rb +37 -0
  90. data/spec/dummy-rails3/config/initializers/backtrace_silencers.rb +7 -0
  91. data/spec/dummy-rails3/config/initializers/inflections.rb +15 -0
  92. data/spec/dummy-rails3/config/initializers/mime_types.rb +5 -0
  93. data/spec/dummy-rails3/config/initializers/secret_token.rb +7 -0
  94. data/spec/dummy-rails3/config/initializers/session_store.rb +8 -0
  95. data/spec/dummy-rails3/config/initializers/wrap_parameters.rb +14 -0
  96. data/spec/dummy-rails3/config/locales/en.yml +5 -0
  97. data/spec/dummy-rails3/config/routes.rb +61 -0
  98. data/spec/dummy-rails3/config.ru +4 -0
  99. data/spec/dummy-rails3/db/development.sqlite3 +0 -0
  100. data/spec/dummy-rails3/db/schema.rb +16 -0
  101. data/spec/dummy-rails3/db/test.sqlite3 +0 -0
  102. data/spec/dummy-rails3/lib/assets/.gitkeep +0 -0
  103. data/spec/dummy-rails3/log/.gitkeep +0 -0
  104. data/spec/dummy-rails3/log/development.log +17 -0
  105. data/spec/dummy-rails3/log/test.log +1479 -0
  106. data/spec/dummy-rails3/public/404.html +26 -0
  107. data/spec/dummy-rails3/public/422.html +26 -0
  108. data/spec/dummy-rails3/public/500.html +25 -0
  109. data/spec/dummy-rails3/public/favicon.ico +0 -0
  110. data/spec/dummy-rails3/script/rails +6 -0
  111. data/spec/dummy-rails3/tmp/cache/assets/BF6/DF0/sprockets%2F285744e0e3233126b590652597a6846c +0 -0
  112. data/spec/dummy-rails3/tmp/cache/assets/C5D/260/sprockets%2Ffe17576541881f7db15017c3b9647194 +0 -0
  113. data/spec/dummy-rails3/tmp/cache/assets/C71/960/sprockets%2F5c3859335128c2f0cc31422bb33e1674 +0 -0
  114. data/spec/dummy-rails3/tmp/cache/assets/CA1/D70/sprockets%2F32526aac68f06e61515371c202fe44a7 +0 -0
  115. data/spec/dummy-rails3/tmp/cache/assets/CD4/E60/sprockets%2F0ae34929c3b851d7104f8307a2c02ed8 +0 -0
  116. data/spec/dummy-rails3/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  117. data/spec/dummy-rails3/tmp/cache/assets/CEC/780/sprockets%2Fc3c981b384b293911ee64e25c1c5779f +0 -0
  118. data/spec/dummy-rails3/tmp/cache/assets/CEE/CF0/sprockets%2F5d33a38968a71a6b4772723ae94ee77c +0 -0
  119. data/spec/dummy-rails3/tmp/cache/assets/CF3/FC0/sprockets%2F9b695713056bfc62c3198c75829dbd6e +0 -0
  120. data/spec/dummy-rails3/tmp/cache/assets/D0D/320/sprockets%2Fb2a9b609874a7a625a68223b607ac6ee +0 -0
  121. data/spec/dummy-rails3/tmp/cache/assets/D1A/340/sprockets%2Fb9708e6882954f6dabf115cf4df62330 +0 -0
  122. data/spec/dummy-rails3/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  123. data/spec/dummy-rails3/tmp/cache/assets/D4C/240/sprockets%2F3d9d437b39287fd1b6cc5a556a590f5f +0 -0
  124. data/spec/dummy-rails3/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  125. data/spec/dummy-rails3/tmp/cache/assets/D55/740/sprockets%2F4963d046e3b5cf4e73cd9cd6c8089f29 +0 -0
  126. data/spec/dummy-rails3/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  127. data/spec/dummy-rails3/tmp/cache/assets/D71/6F0/sprockets%2F67621a32b646ce75e6dff65f8aa710bc +0 -0
  128. data/spec/dummy-rails3/tmp/cache/assets/DA3/C40/sprockets%2F93fac7c58d64b927fa52c22cbb38d93a +0 -0
  129. data/spec/dummy-rails3/tmp/cache/assets/DAD/440/sprockets%2Fb0ab4f86a4241a5ba22ecd830eb02e5a +0 -0
  130. data/spec/dummy-rails3/tmp/cache/assets/DC5/160/sprockets%2Fc403bbe0253f8ef0158efced2c2d4f45 +0 -0
  131. data/spec/dummy-rails3/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  132. data/spec/dummy-rails3/tmp/cache/assets/DDD/0A0/sprockets%2F924e879dd0cae5bfcd974a9f046df50c +0 -0
  133. data/spec/dummy-rails3/tmp/cache/assets/DFB/530/sprockets%2Fda0209bfac7d7fd73e9da2d19d2b156f +0 -0
  134. data/spec/dummy-rails3/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  135. data/spec/features/sweet_alert_confirm_spec.rb +67 -0
  136. data/spec/spec_helper.rb +49 -0
  137. data/sweet-alert-confirm.gemspec +27 -0
  138. metadata +279 -0
@@ -0,0 +1,1479 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+ Connecting to database specified by database.yml
4
+  (0.3ms) begin transaction
5
+  (0.0ms) rollback transaction
6
+  (0.0ms) begin transaction
7
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:25:25 -0430
8
+ Processing by ConfirmsController#index as HTML
9
+ Rendered confirms/index.html.erb within layouts/application (3.4ms)
10
+ Completed 200 OK in 14.2ms (Views: 13.8ms | ActiveRecord: 0.0ms)
11
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-10-13 18:25:25 -0430
12
+ Warning. Error encountered while saving cache /Users/moises/proyectos/gems/sweet_rails_confirm/spec/dummy-rails3/tmp/cache/sass/bd708edc765b11d933154b88e166294c3e98cb7a/sweet-alert.scssc: can't dump anonymous class #<Class:0x007fb72e0e8840>
13
+
14
+ Compiled sweet-alert/sweet-alert.css (109ms) (pid 3130)
15
+ Compiled sweet-alert/index.css (114ms) (pid 3130)
16
+ Compiled application.scss.css (2ms) (pid 3130)
17
+ Compiled application.css (132ms) (pid 3130)
18
+ Served asset /application.css - 200 OK (138ms)
19
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-10-13 18:25:25 -0430
20
+ Compiled jquery.js (6ms) (pid 3130)
21
+ Compiled jquery_ujs.js (1ms) (pid 3130)
22
+ Compiled sweet-alert/sweet-alert.js (1ms) (pid 3130)
23
+ Compiled sweet-alert/sweet-alert.min.js (0ms) (pid 3130)
24
+ Compiled sweet-alert/index.js (12ms) (pid 3130)
25
+ Compiled sweet-alert-confirm.js (2ms) (pid 3130)
26
+ Compiled application.js (48ms) (pid 3130)
27
+ Served asset /application.js - 200 OK (56ms)
28
+  (0.1ms) rollback transaction
29
+  (0.0ms) begin transaction
30
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:25:25 -0430
31
+ Processing by ConfirmsController#index as HTML
32
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
33
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
34
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 18:25:26 -0430
35
+ Processing by ConfirmsController#delete_cow as JS
36
+ Rendered confirms/delete_cow.js.erb (0.5ms)
37
+ Completed 200 OK in 10.7ms (Views: 10.3ms | ActiveRecord: 0.0ms)
38
+  (0.2ms) rollback transaction
39
+  (0.1ms) begin transaction
40
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:25:27 -0430
41
+ Processing by ConfirmsController#index as HTML
42
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
43
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
44
+  (0.1ms) rollback transaction
45
+  (0.1ms) begin transaction
46
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:25:27 -0430
47
+ Processing by ConfirmsController#index as HTML
48
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
49
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
50
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 18:25:28 -0430
51
+ Processing by ConfirmsController#get_cow as HTML
52
+ Rendered confirms/get_cow.html.erb within layouts/application (0.3ms)
53
+ Completed 200 OK in 2.8ms (Views: 2.4ms | ActiveRecord: 0.0ms)
54
+  (0.1ms) rollback transaction
55
+  (0.1ms) begin transaction
56
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:25:28 -0430
57
+ Processing by ConfirmsController#index as HTML
58
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
59
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
60
+  (0.0ms) rollback transaction
61
+  (0.1ms) begin transaction
62
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:25:28 -0430
63
+ Processing by ConfirmsController#index as HTML
64
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
65
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
66
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 18:25:29 -0430
67
+ Processing by ConfirmsController#delete_cow as HTML
68
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.5ms)
69
+ Completed 200 OK in 3.2ms (Views: 2.9ms | ActiveRecord: 0.0ms)
70
+  (0.1ms) rollback transaction
71
+  (0.1ms) begin transaction
72
+  (0.0ms) rollback transaction
73
+  (0.0ms) begin transaction
74
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:25:29 -0430
75
+ Processing by ConfirmsController#index as HTML
76
+ Rendered confirms/index.html.erb within layouts/application (0.9ms)
77
+ Completed 200 OK in 2.1ms (Views: 2.0ms | ActiveRecord: 0.0ms)
78
+  (0.1ms) rollback transaction
79
+  (0.1ms) begin transaction
80
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:25:29 -0430
81
+ Processing by ConfirmsController#index as HTML
82
+ Rendered confirms/index.html.erb within layouts/application (0.9ms)
83
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
84
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 18:25:31 -0430
85
+ Processing by ConfirmsController#delete_cow as JS
86
+ Rendered confirms/delete_cow.js.erb (0.0ms)
87
+ Completed 200 OK in 0.6ms (Views: 0.4ms | ActiveRecord: 0.0ms)
88
+  (0.1ms) rollback transaction
89
+  (0.0ms) begin transaction
90
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:25:31 -0430
91
+ Processing by ConfirmsController#index as HTML
92
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
93
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
94
+  (0.1ms) rollback transaction
95
+  (0.1ms) begin transaction
96
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:25:31 -0430
97
+ Processing by ConfirmsController#index as HTML
98
+ Rendered confirms/index.html.erb within layouts/application (1.2ms)
99
+ Completed 200 OK in 3.3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
100
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 18:25:32 -0430
101
+ Processing by ConfirmsController#get_cow as HTML
102
+ Rendered confirms/get_cow.html.erb within layouts/application (0.0ms)
103
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
104
+  (0.1ms) rollback transaction
105
+  (0.1ms) begin transaction
106
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:25:32 -0430
107
+ Processing by ConfirmsController#index as HTML
108
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
109
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
110
+  (0.0ms) rollback transaction
111
+  (0.1ms) begin transaction
112
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:25:32 -0430
113
+ Processing by ConfirmsController#index as HTML
114
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
115
+ Completed 200 OK in 2.1ms (Views: 2.0ms | ActiveRecord: 0.0ms)
116
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 18:25:33 -0430
117
+ Processing by ConfirmsController#delete_cow as HTML
118
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.0ms)
119
+ Completed 200 OK in 1.3ms (Views: 1.1ms | ActiveRecord: 0.0ms)
120
+  (0.1ms) rollback transaction
121
+  (0.1ms) begin transaction
122
+  (0.0ms) rollback transaction
123
+  (0.0ms) begin transaction
124
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:25:33 -0430
125
+ Processing by ConfirmsController#index as HTML
126
+ Rendered confirms/index.html.erb within layouts/application (7.7ms)
127
+ Completed 200 OK in 9.1ms (Views: 9.0ms | ActiveRecord: 0.0ms)
128
+  (0.1ms) rollback transaction
129
+  (0.1ms) begin transaction
130
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:25:33 -0430
131
+ Processing by ConfirmsController#index as HTML
132
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
133
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
134
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 18:25:35 -0430
135
+ Processing by ConfirmsController#delete_cow as JS
136
+ Rendered confirms/delete_cow.js.erb (0.0ms)
137
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
138
+  (0.0ms) rollback transaction
139
+  (0.1ms) begin transaction
140
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:25:35 -0430
141
+ Processing by ConfirmsController#index as HTML
142
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
143
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
144
+  (0.1ms) rollback transaction
145
+  (0.1ms) begin transaction
146
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:25:35 -0430
147
+ Processing by ConfirmsController#index as HTML
148
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
149
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
150
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 18:25:36 -0430
151
+ Processing by ConfirmsController#get_cow as HTML
152
+ Rendered confirms/get_cow.html.erb within layouts/application (0.0ms)
153
+ Completed 200 OK in 1.0ms (Views: 1.0ms | ActiveRecord: 0.0ms)
154
+  (0.1ms) rollback transaction
155
+  (0.0ms) begin transaction
156
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:25:36 -0430
157
+ Processing by ConfirmsController#index as HTML
158
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
159
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
160
+  (0.1ms) rollback transaction
161
+  (0.1ms) begin transaction
162
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:25:36 -0430
163
+ Processing by ConfirmsController#index as HTML
164
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
165
+ Completed 200 OK in 2.3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
166
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 18:25:37 -0430
167
+ Processing by ConfirmsController#delete_cow as HTML
168
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.0ms)
169
+ Completed 200 OK in 1.1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
170
+  (0.1ms) rollback transaction
171
+ Connecting to database specified by database.yml
172
+  (0.3ms) begin transaction
173
+  (0.1ms) rollback transaction
174
+  (0.1ms) begin transaction
175
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:45:02 -0430
176
+ Processing by ConfirmsController#index as HTML
177
+ Rendered confirms/index.html.erb within layouts/application (2.9ms)
178
+ Completed 200 OK in 16.0ms (Views: 15.4ms | ActiveRecord: 0.0ms)
179
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-10-13 18:45:02 -0430
180
+ Served asset /application.css - 200 OK (14ms)
181
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-10-13 18:45:02 -0430
182
+ Served asset /application.js - 200 OK (24ms)
183
+  (0.1ms) rollback transaction
184
+  (0.1ms) begin transaction
185
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:45:03 -0430
186
+ Processing by ConfirmsController#index as HTML
187
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
188
+ Completed 200 OK in 2.2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
189
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 18:45:04 -0430
190
+ Processing by ConfirmsController#delete_cow as JS
191
+ Rendered confirms/delete_cow.js.erb (0.4ms)
192
+ Completed 200 OK in 3.3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
193
+  (0.1ms) rollback transaction
194
+  (0.1ms) begin transaction
195
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:45:04 -0430
196
+ Processing by ConfirmsController#index as HTML
197
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
198
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
199
+  (0.1ms) rollback transaction
200
+  (0.1ms) begin transaction
201
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:45:04 -0430
202
+ Processing by ConfirmsController#index as HTML
203
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
204
+ Completed 200 OK in 2.1ms (Views: 1.9ms | ActiveRecord: 0.0ms)
205
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 18:45:05 -0430
206
+ Processing by ConfirmsController#get_cow as HTML
207
+ Rendered confirms/get_cow.html.erb within layouts/application (0.6ms)
208
+ Completed 200 OK in 4.1ms (Views: 3.5ms | ActiveRecord: 0.0ms)
209
+  (0.1ms) rollback transaction
210
+  (0.1ms) begin transaction
211
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:45:05 -0430
212
+ Processing by ConfirmsController#index as HTML
213
+ Rendered confirms/index.html.erb within layouts/application (1.8ms)
214
+ Completed 200 OK in 4.1ms (Views: 3.9ms | ActiveRecord: 0.0ms)
215
+  (0.1ms) rollback transaction
216
+  (0.1ms) begin transaction
217
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:45:05 -0430
218
+ Processing by ConfirmsController#index as HTML
219
+ Rendered confirms/index.html.erb within layouts/application (0.9ms)
220
+ Completed 200 OK in 2.1ms (Views: 2.0ms | ActiveRecord: 0.0ms)
221
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 18:45:06 -0430
222
+ Processing by ConfirmsController#delete_cow as HTML
223
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.4ms)
224
+ Completed 200 OK in 2.5ms (Views: 2.2ms | ActiveRecord: 0.0ms)
225
+  (0.1ms) rollback transaction
226
+  (0.1ms) begin transaction
227
+  (0.1ms) rollback transaction
228
+  (0.0ms) begin transaction
229
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:45:07 -0430
230
+ Processing by ConfirmsController#index as HTML
231
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
232
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
233
+  (0.1ms) rollback transaction
234
+  (0.1ms) begin transaction
235
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:45:07 -0430
236
+ Processing by ConfirmsController#index as HTML
237
+ Rendered confirms/index.html.erb within layouts/application (0.9ms)
238
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
239
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 18:45:08 -0430
240
+ Processing by ConfirmsController#delete_cow as JS
241
+ Rendered confirms/delete_cow.js.erb (0.0ms)
242
+ Completed 200 OK in 0.6ms (Views: 0.4ms | ActiveRecord: 0.0ms)
243
+  (0.1ms) rollback transaction
244
+  (0.1ms) begin transaction
245
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:45:08 -0430
246
+ Processing by ConfirmsController#index as HTML
247
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
248
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
249
+  (0.0ms) rollback transaction
250
+  (0.1ms) begin transaction
251
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:45:08 -0430
252
+ Processing by ConfirmsController#index as HTML
253
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
254
+ Completed 200 OK in 1.6ms (Views: 1.6ms | ActiveRecord: 0.0ms)
255
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 18:45:09 -0430
256
+ Processing by ConfirmsController#get_cow as HTML
257
+ Rendered confirms/get_cow.html.erb within layouts/application (0.0ms)
258
+ Completed 200 OK in 1.1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
259
+  (0.1ms) rollback transaction
260
+  (0.1ms) begin transaction
261
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:45:09 -0430
262
+ Processing by ConfirmsController#index as HTML
263
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
264
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
265
+  (0.1ms) rollback transaction
266
+  (0.1ms) begin transaction
267
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:45:09 -0430
268
+ Processing by ConfirmsController#index as HTML
269
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
270
+ Completed 200 OK in 1.9ms (Views: 1.9ms | ActiveRecord: 0.0ms)
271
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 18:45:10 -0430
272
+ Processing by ConfirmsController#delete_cow as HTML
273
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.0ms)
274
+ Completed 200 OK in 1.3ms (Views: 1.1ms | ActiveRecord: 0.0ms)
275
+  (0.1ms) rollback transaction
276
+  (0.1ms) begin transaction
277
+  (0.0ms) rollback transaction
278
+  (0.0ms) begin transaction
279
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:45:11 -0430
280
+ Processing by ConfirmsController#index as HTML
281
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
282
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
283
+  (0.1ms) rollback transaction
284
+  (0.1ms) begin transaction
285
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:45:11 -0430
286
+ Processing by ConfirmsController#index as HTML
287
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
288
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
289
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 18:45:12 -0430
290
+ Processing by ConfirmsController#delete_cow as JS
291
+ Rendered confirms/delete_cow.js.erb (0.1ms)
292
+ Completed 200 OK in 0.8ms (Views: 0.7ms | ActiveRecord: 0.0ms)
293
+  (0.1ms) rollback transaction
294
+  (0.1ms) begin transaction
295
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:45:12 -0430
296
+ Processing by ConfirmsController#index as HTML
297
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
298
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
299
+  (0.1ms) rollback transaction
300
+  (0.1ms) begin transaction
301
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:45:12 -0430
302
+ Processing by ConfirmsController#index as HTML
303
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
304
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
305
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 18:45:13 -0430
306
+ Processing by ConfirmsController#get_cow as HTML
307
+ Rendered confirms/get_cow.html.erb within layouts/application (0.0ms)
308
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
309
+  (0.1ms) rollback transaction
310
+  (0.1ms) begin transaction
311
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:45:13 -0430
312
+ Processing by ConfirmsController#index as HTML
313
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
314
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
315
+  (0.1ms) rollback transaction
316
+  (0.1ms) begin transaction
317
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:45:13 -0430
318
+ Processing by ConfirmsController#index as HTML
319
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
320
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
321
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 18:45:15 -0430
322
+ Processing by ConfirmsController#delete_cow as HTML
323
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.0ms)
324
+ Completed 200 OK in 1.2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
325
+  (0.1ms) rollback transaction
326
+ Connecting to database specified by database.yml
327
+  (0.2ms) begin transaction
328
+  (0.0ms) rollback transaction
329
+  (0.0ms) begin transaction
330
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:50:14 -0430
331
+ Processing by ConfirmsController#index as HTML
332
+ Rendered confirms/index.html.erb within layouts/application (3.4ms)
333
+ Completed 200 OK in 14.2ms (Views: 13.7ms | ActiveRecord: 0.0ms)
334
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-10-13 18:50:14 -0430
335
+ Served asset /application.css - 200 OK (12ms)
336
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-10-13 18:50:14 -0430
337
+ Served asset /application.js - 200 OK (21ms)
338
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 18:50:16 -0430
339
+ Processing by ConfirmsController#delete_cow as HTML
340
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.4ms)
341
+ Completed 200 OK in 3.1ms (Views: 2.7ms | ActiveRecord: 0.0ms)
342
+  (0.1ms) rollback transaction
343
+  (0.1ms) begin transaction
344
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:50:17 -0430
345
+ Processing by ConfirmsController#index as HTML
346
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
347
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
348
+  (0.1ms) rollback transaction
349
+  (0.1ms) begin transaction
350
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:50:17 -0430
351
+ Processing by ConfirmsController#index as HTML
352
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
353
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
354
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 18:50:18 -0430
355
+ Processing by ConfirmsController#delete_cow as JS
356
+ Rendered confirms/delete_cow.js.erb (0.3ms)
357
+ Completed 200 OK in 10.4ms (Views: 10.1ms | ActiveRecord: 0.0ms)
358
+  (0.1ms) rollback transaction
359
+  (0.0ms) begin transaction
360
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:50:18 -0430
361
+ Processing by ConfirmsController#index as HTML
362
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
363
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
364
+  (0.1ms) rollback transaction
365
+  (0.1ms) begin transaction
366
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:50:18 -0430
367
+ Processing by ConfirmsController#index as HTML
368
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
369
+ Completed 200 OK in 2.0ms (Views: 1.8ms | ActiveRecord: 0.0ms)
370
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 18:50:19 -0430
371
+ Processing by ConfirmsController#get_cow as HTML
372
+ Rendered confirms/get_cow.html.erb within layouts/application (12.3ms)
373
+ Completed 200 OK in 15.1ms (Views: 14.6ms | ActiveRecord: 0.0ms)
374
+  (0.1ms) rollback transaction
375
+  (0.1ms) begin transaction
376
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:50:19 -0430
377
+ Processing by ConfirmsController#index as HTML
378
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
379
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
380
+  (0.1ms) rollback transaction
381
+  (0.1ms) begin transaction
382
+  (0.0ms) rollback transaction
383
+  (0.0ms) begin transaction
384
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:50:19 -0430
385
+ Processing by ConfirmsController#index as HTML
386
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
387
+ Completed 200 OK in 2.2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
388
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 18:50:21 -0430
389
+ Processing by ConfirmsController#delete_cow as HTML
390
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.0ms)
391
+ Completed 200 OK in 1.2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
392
+  (0.1ms) rollback transaction
393
+  (0.1ms) begin transaction
394
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:50:21 -0430
395
+ Processing by ConfirmsController#index as HTML
396
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
397
+ Completed 200 OK in 1.9ms (Views: 1.9ms | ActiveRecord: 0.0ms)
398
+  (0.1ms) rollback transaction
399
+  (0.1ms) begin transaction
400
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:50:21 -0430
401
+ Processing by ConfirmsController#index as HTML
402
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
403
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
404
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 18:50:22 -0430
405
+ Processing by ConfirmsController#delete_cow as JS
406
+ Rendered confirms/delete_cow.js.erb (0.0ms)
407
+ Completed 200 OK in 0.6ms (Views: 0.4ms | ActiveRecord: 0.0ms)
408
+  (0.1ms) rollback transaction
409
+  (0.1ms) begin transaction
410
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:50:22 -0430
411
+ Processing by ConfirmsController#index as HTML
412
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
413
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
414
+  (0.1ms) rollback transaction
415
+  (0.1ms) begin transaction
416
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:50:22 -0430
417
+ Processing by ConfirmsController#index as HTML
418
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
419
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
420
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 18:50:23 -0430
421
+ Processing by ConfirmsController#get_cow as HTML
422
+ Rendered confirms/get_cow.html.erb within layouts/application (0.0ms)
423
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
424
+  (0.1ms) rollback transaction
425
+  (0.1ms) begin transaction
426
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:50:23 -0430
427
+ Processing by ConfirmsController#index as HTML
428
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
429
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
430
+  (0.1ms) rollback transaction
431
+  (0.1ms) begin transaction
432
+  (0.0ms) rollback transaction
433
+  (0.0ms) begin transaction
434
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:50:24 -0430
435
+ Processing by ConfirmsController#index as HTML
436
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
437
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
438
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 18:50:25 -0430
439
+ Processing by ConfirmsController#delete_cow as HTML
440
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.0ms)
441
+ Completed 200 OK in 1.3ms (Views: 1.1ms | ActiveRecord: 0.0ms)
442
+  (0.1ms) rollback transaction
443
+  (0.1ms) begin transaction
444
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:50:25 -0430
445
+ Processing by ConfirmsController#index as HTML
446
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
447
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
448
+  (0.1ms) rollback transaction
449
+  (0.1ms) begin transaction
450
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:50:25 -0430
451
+ Processing by ConfirmsController#index as HTML
452
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
453
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
454
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 18:50:26 -0430
455
+ Processing by ConfirmsController#delete_cow as JS
456
+ Rendered confirms/delete_cow.js.erb (0.0ms)
457
+ Completed 200 OK in 0.6ms (Views: 0.4ms | ActiveRecord: 0.0ms)
458
+  (0.1ms) rollback transaction
459
+  (0.0ms) begin transaction
460
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:50:26 -0430
461
+ Processing by ConfirmsController#index as HTML
462
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
463
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
464
+  (0.1ms) rollback transaction
465
+  (0.0ms) begin transaction
466
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:50:26 -0430
467
+ Processing by ConfirmsController#index as HTML
468
+ Rendered confirms/index.html.erb within layouts/application (0.9ms)
469
+ Completed 200 OK in 2.1ms (Views: 2.0ms | ActiveRecord: 0.0ms)
470
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 18:50:27 -0430
471
+ Processing by ConfirmsController#get_cow as HTML
472
+ Rendered confirms/get_cow.html.erb within layouts/application (0.0ms)
473
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
474
+  (0.1ms) rollback transaction
475
+  (0.1ms) begin transaction
476
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 18:50:27 -0430
477
+ Processing by ConfirmsController#index as HTML
478
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
479
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
480
+  (0.1ms) rollback transaction
481
+ Connecting to database specified by database.yml
482
+  (0.3ms) begin transaction
483
+  (0.1ms) rollback transaction
484
+  (0.1ms) begin transaction
485
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:33:24 -0430
486
+ Processing by ConfirmsController#index as HTML
487
+ Rendered confirms/index.html.erb within layouts/application (17.9ms)
488
+ Completed 200 OK in 28.5ms (Views: 28.0ms | ActiveRecord: 0.0ms)
489
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-10-13 19:33:24 -0430
490
+ Served asset /application.css - 200 OK (11ms)
491
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-10-13 19:33:24 -0430
492
+ Served asset /application.js - 200 OK (26ms)
493
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 19:33:26 -0430
494
+ Processing by ConfirmsController#delete_cow as HTML
495
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.5ms)
496
+ Completed 200 OK in 3.5ms (Views: 3.1ms | ActiveRecord: 0.0ms)
497
+  (0.1ms) rollback transaction
498
+  (0.1ms) begin transaction
499
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:33:26 -0430
500
+ Processing by ConfirmsController#index as HTML
501
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
502
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
503
+  (0.1ms) rollback transaction
504
+  (0.1ms) begin transaction
505
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:33:26 -0430
506
+ Processing by ConfirmsController#index as HTML
507
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
508
+ Completed 200 OK in 2.0ms (Views: 1.8ms | ActiveRecord: 0.0ms)
509
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 19:33:27 -0430
510
+ Processing by ConfirmsController#get_cow as HTML
511
+ Rendered confirms/get_cow.html.erb within layouts/application (0.4ms)
512
+ Completed 200 OK in 2.5ms (Views: 2.1ms | ActiveRecord: 0.0ms)
513
+  (0.1ms) rollback transaction
514
+  (0.1ms) begin transaction
515
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:33:27 -0430
516
+ Processing by ConfirmsController#index as HTML
517
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
518
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
519
+  (0.1ms) rollback transaction
520
+  (0.1ms) begin transaction
521
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:33:27 -0430
522
+ Processing by ConfirmsController#index as HTML
523
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
524
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
525
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 19:33:28 -0430
526
+ Processing by ConfirmsController#delete_cow as JS
527
+ Rendered confirms/delete_cow.js.erb (0.4ms)
528
+ Completed 200 OK in 2.8ms (Views: 2.5ms | ActiveRecord: 0.0ms)
529
+  (0.1ms) rollback transaction
530
+  (0.2ms) begin transaction
531
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:33:28 -0430
532
+ Processing by ConfirmsController#index as HTML
533
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
534
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
535
+  (0.1ms) rollback transaction
536
+  (0.1ms) begin transaction
537
+  (0.0ms) rollback transaction
538
+  (0.0ms) begin transaction
539
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:33:29 -0430
540
+ Processing by ConfirmsController#index as HTML
541
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
542
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
543
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 19:33:30 -0430
544
+ Processing by ConfirmsController#delete_cow as HTML
545
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.0ms)
546
+ Completed 200 OK in 1.3ms (Views: 1.1ms | ActiveRecord: 0.0ms)
547
+  (0.1ms) rollback transaction
548
+  (0.1ms) begin transaction
549
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:33:30 -0430
550
+ Processing by ConfirmsController#index as HTML
551
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
552
+ Completed 200 OK in 2.0ms (Views: 1.8ms | ActiveRecord: 0.0ms)
553
+  (0.1ms) rollback transaction
554
+  (0.1ms) begin transaction
555
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:33:30 -0430
556
+ Processing by ConfirmsController#index as HTML
557
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
558
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
559
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 19:33:31 -0430
560
+ Processing by ConfirmsController#get_cow as HTML
561
+ Rendered confirms/get_cow.html.erb within layouts/application (0.0ms)
562
+ Completed 200 OK in 1.1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
563
+  (0.1ms) rollback transaction
564
+  (0.1ms) begin transaction
565
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:33:31 -0430
566
+ Processing by ConfirmsController#index as HTML
567
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
568
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
569
+  (0.1ms) rollback transaction
570
+  (0.1ms) begin transaction
571
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:33:31 -0430
572
+ Processing by ConfirmsController#index as HTML
573
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
574
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
575
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 19:33:33 -0430
576
+ Processing by ConfirmsController#delete_cow as JS
577
+ Rendered confirms/delete_cow.js.erb (0.1ms)
578
+ Completed 200 OK in 1.1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
579
+  (0.1ms) rollback transaction
580
+  (0.1ms) begin transaction
581
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:33:33 -0430
582
+ Processing by ConfirmsController#index as HTML
583
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
584
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
585
+  (0.1ms) rollback transaction
586
+  (0.1ms) begin transaction
587
+  (0.0ms) rollback transaction
588
+  (0.0ms) begin transaction
589
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:33:33 -0430
590
+ Processing by ConfirmsController#index as HTML
591
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
592
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
593
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 19:33:34 -0430
594
+ Processing by ConfirmsController#delete_cow as HTML
595
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.0ms)
596
+ Completed 200 OK in 1.2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
597
+  (0.1ms) rollback transaction
598
+  (0.1ms) begin transaction
599
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:33:34 -0430
600
+ Processing by ConfirmsController#index as HTML
601
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
602
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
603
+  (0.1ms) rollback transaction
604
+  (0.1ms) begin transaction
605
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:33:34 -0430
606
+ Processing by ConfirmsController#index as HTML
607
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
608
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
609
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 19:33:35 -0430
610
+ Processing by ConfirmsController#get_cow as HTML
611
+ Rendered confirms/get_cow.html.erb within layouts/application (0.0ms)
612
+ Completed 200 OK in 1.1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
613
+  (0.1ms) rollback transaction
614
+  (0.1ms) begin transaction
615
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:33:35 -0430
616
+ Processing by ConfirmsController#index as HTML
617
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
618
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
619
+  (0.1ms) rollback transaction
620
+  (0.1ms) begin transaction
621
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:33:35 -0430
622
+ Processing by ConfirmsController#index as HTML
623
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
624
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
625
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 19:33:37 -0430
626
+ Processing by ConfirmsController#delete_cow as JS
627
+ Rendered confirms/delete_cow.js.erb (0.0ms)
628
+ Completed 200 OK in 1.0ms (Views: 0.7ms | ActiveRecord: 0.0ms)
629
+  (0.1ms) rollback transaction
630
+  (0.1ms) begin transaction
631
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:33:37 -0430
632
+ Processing by ConfirmsController#index as HTML
633
+ Rendered confirms/index.html.erb within layouts/application (0.9ms)
634
+ Completed 200 OK in 2.1ms (Views: 2.0ms | ActiveRecord: 0.0ms)
635
+  (0.1ms) rollback transaction
636
+ Connecting to database specified by database.yml
637
+  (0.3ms) begin transaction
638
+  (0.0ms) rollback transaction
639
+  (0.0ms) begin transaction
640
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:36:40 -0430
641
+ Processing by ConfirmsController#index as HTML
642
+ Rendered confirms/index.html.erb within layouts/application (4.0ms)
643
+ Completed 200 OK in 16.0ms (Views: 15.6ms | ActiveRecord: 0.0ms)
644
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-10-13 19:36:40 -0430
645
+ Served asset /application.css - 200 OK (11ms)
646
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-10-13 19:36:40 -0430
647
+ Served asset /application.js - 200 OK (19ms)
648
+  (0.1ms) rollback transaction
649
+  (0.1ms) begin transaction
650
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:36:40 -0430
651
+ Processing by ConfirmsController#index as HTML
652
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
653
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
654
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 19:36:42 -0430
655
+ Processing by ConfirmsController#get_cow as HTML
656
+ Rendered confirms/get_cow.html.erb within layouts/application (0.3ms)
657
+ Completed 200 OK in 2.1ms (Views: 1.8ms | ActiveRecord: 0.0ms)
658
+  (0.1ms) rollback transaction
659
+  (0.0ms) begin transaction
660
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:36:42 -0430
661
+ Processing by ConfirmsController#index as HTML
662
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
663
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
664
+  (0.1ms) rollback transaction
665
+  (0.1ms) begin transaction
666
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:36:42 -0430
667
+ Processing by ConfirmsController#index as HTML
668
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
669
+ Completed 200 OK in 2.1ms (Views: 2.0ms | ActiveRecord: 0.0ms)
670
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 19:36:43 -0430
671
+ Processing by ConfirmsController#delete_cow as JS
672
+ Rendered confirms/delete_cow.js.erb (0.4ms)
673
+ Completed 200 OK in 10.4ms (Views: 10.0ms | ActiveRecord: 0.0ms)
674
+  (0.1ms) rollback transaction
675
+  (0.1ms) begin transaction
676
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:36:43 -0430
677
+ Processing by ConfirmsController#index as HTML
678
+ Rendered confirms/index.html.erb within layouts/application (1.2ms)
679
+ Completed 200 OK in 3.3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
680
+  (0.1ms) rollback transaction
681
+  (0.1ms) begin transaction
682
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:36:43 -0430
683
+ Processing by ConfirmsController#index as HTML
684
+ Rendered confirms/index.html.erb within layouts/application (0.9ms)
685
+ Completed 200 OK in 2.2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
686
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 19:36:45 -0430
687
+ Processing by ConfirmsController#delete_cow as HTML
688
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.6ms)
689
+ Completed 200 OK in 3.3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
690
+  (0.1ms) rollback transaction
691
+  (0.0ms) begin transaction
692
+  (0.0ms) rollback transaction
693
+  (0.0ms) begin transaction
694
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:36:45 -0430
695
+ Processing by ConfirmsController#index as HTML
696
+ Rendered confirms/index.html.erb within layouts/application (2.1ms)
697
+ Completed 200 OK in 4.3ms (Views: 4.1ms | ActiveRecord: 0.0ms)
698
+  (0.1ms) rollback transaction
699
+  (0.2ms) begin transaction
700
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:36:45 -0430
701
+ Processing by ConfirmsController#index as HTML
702
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
703
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
704
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 19:36:46 -0430
705
+ Processing by ConfirmsController#get_cow as HTML
706
+ Rendered confirms/get_cow.html.erb within layouts/application (0.0ms)
707
+ Completed 200 OK in 2.3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
708
+  (0.0ms) rollback transaction
709
+  (0.1ms) begin transaction
710
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:36:46 -0430
711
+ Processing by ConfirmsController#index as HTML
712
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
713
+ Completed 200 OK in 2.1ms (Views: 2.0ms | ActiveRecord: 0.0ms)
714
+  (0.1ms) rollback transaction
715
+  (0.1ms) begin transaction
716
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:36:46 -0430
717
+ Processing by ConfirmsController#index as HTML
718
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
719
+ Completed 200 OK in 2.6ms (Views: 2.4ms | ActiveRecord: 0.0ms)
720
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 19:36:48 -0430
721
+ Processing by ConfirmsController#delete_cow as JS
722
+ Rendered confirms/delete_cow.js.erb (0.1ms)
723
+ Completed 200 OK in 1.6ms (Views: 1.0ms | ActiveRecord: 0.0ms)
724
+  (0.1ms) rollback transaction
725
+  (0.1ms) begin transaction
726
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:36:48 -0430
727
+ Processing by ConfirmsController#index as HTML
728
+ Rendered confirms/index.html.erb within layouts/application (1.5ms)
729
+ Completed 200 OK in 3.4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
730
+  (0.1ms) rollback transaction
731
+  (0.1ms) begin transaction
732
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:36:48 -0430
733
+ Processing by ConfirmsController#index as HTML
734
+ Rendered confirms/index.html.erb within layouts/application (1.1ms)
735
+ Completed 200 OK in 2.9ms (Views: 2.8ms | ActiveRecord: 0.0ms)
736
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 19:36:49 -0430
737
+ Processing by ConfirmsController#delete_cow as HTML
738
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.0ms)
739
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
740
+  (0.1ms) rollback transaction
741
+  (0.1ms) begin transaction
742
+  (0.0ms) rollback transaction
743
+  (0.0ms) begin transaction
744
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:36:49 -0430
745
+ Processing by ConfirmsController#index as HTML
746
+ Rendered confirms/index.html.erb within layouts/application (1.1ms)
747
+ Completed 200 OK in 2.7ms (Views: 2.6ms | ActiveRecord: 0.0ms)
748
+  (0.0ms) rollback transaction
749
+  (0.1ms) begin transaction
750
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:36:49 -0430
751
+ Processing by ConfirmsController#index as HTML
752
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
753
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
754
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 19:36:50 -0430
755
+ Processing by ConfirmsController#get_cow as HTML
756
+ Rendered confirms/get_cow.html.erb within layouts/application (0.0ms)
757
+ Completed 200 OK in 1.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
758
+  (0.2ms) rollback transaction
759
+  (0.1ms) begin transaction
760
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:36:50 -0430
761
+ Processing by ConfirmsController#index as HTML
762
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
763
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
764
+  (0.1ms) rollback transaction
765
+  (0.1ms) begin transaction
766
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:36:50 -0430
767
+ Processing by ConfirmsController#index as HTML
768
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
769
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
770
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 19:36:52 -0430
771
+ Processing by ConfirmsController#delete_cow as JS
772
+ Rendered confirms/delete_cow.js.erb (0.1ms)
773
+ Completed 200 OK in 1.3ms (Views: 0.9ms | ActiveRecord: 0.0ms)
774
+  (0.1ms) rollback transaction
775
+  (0.1ms) begin transaction
776
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:36:52 -0430
777
+ Processing by ConfirmsController#index as HTML
778
+ Rendered confirms/index.html.erb within layouts/application (1.0ms)
779
+ Completed 200 OK in 2.4ms (Views: 2.2ms | ActiveRecord: 0.0ms)
780
+  (0.1ms) rollback transaction
781
+  (0.0ms) begin transaction
782
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:36:52 -0430
783
+ Processing by ConfirmsController#index as HTML
784
+ Rendered confirms/index.html.erb within layouts/application (1.2ms)
785
+ Completed 200 OK in 3.0ms (Views: 2.8ms | ActiveRecord: 0.0ms)
786
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 19:36:53 -0430
787
+ Processing by ConfirmsController#delete_cow as HTML
788
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.0ms)
789
+ Completed 200 OK in 1.4ms (Views: 1.2ms | ActiveRecord: 0.0ms)
790
+  (0.1ms) rollback transaction
791
+ Connecting to database specified by database.yml
792
+  (0.3ms) begin transaction
793
+  (0.0ms) rollback transaction
794
+  (0.0ms) begin transaction
795
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:39:41 -0430
796
+ Processing by ConfirmsController#index as HTML
797
+ Rendered confirms/index.html.erb within layouts/application (19.6ms)
798
+ Completed 200 OK in 31.5ms (Views: 31.0ms | ActiveRecord: 0.0ms)
799
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-10-13 19:39:41 -0430
800
+ Served asset /application.css - 200 OK (12ms)
801
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-10-13 19:39:41 -0430
802
+ Served asset /application.js - 200 OK (18ms)
803
+  (0.1ms) rollback transaction
804
+  (0.1ms) begin transaction
805
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:39:43 -0430
806
+ Processing by ConfirmsController#index as HTML
807
+ Rendered confirms/index.html.erb within layouts/application (0.9ms)
808
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
809
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 19:39:44 -0430
810
+ Processing by ConfirmsController#get_cow as HTML
811
+ Rendered confirms/get_cow.html.erb within layouts/application (0.4ms)
812
+ Completed 200 OK in 3.3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
813
+  (0.1ms) rollback transaction
814
+  (0.1ms) begin transaction
815
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:39:44 -0430
816
+ Processing by ConfirmsController#index as HTML
817
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
818
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
819
+  (0.1ms) rollback transaction
820
+  (0.1ms) begin transaction
821
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:39:44 -0430
822
+ Processing by ConfirmsController#index as HTML
823
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
824
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
825
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 19:39:45 -0430
826
+ Processing by ConfirmsController#delete_cow as JS
827
+ Rendered confirms/delete_cow.js.erb (0.5ms)
828
+ Completed 200 OK in 3.8ms (Views: 3.3ms | ActiveRecord: 0.0ms)
829
+  (0.1ms) rollback transaction
830
+  (0.1ms) begin transaction
831
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:39:45 -0430
832
+ Processing by ConfirmsController#index as HTML
833
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
834
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
835
+  (0.1ms) rollback transaction
836
+  (0.1ms) begin transaction
837
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:39:45 -0430
838
+ Processing by ConfirmsController#index as HTML
839
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
840
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
841
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 19:39:46 -0430
842
+ Processing by ConfirmsController#delete_cow as HTML
843
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.5ms)
844
+ Completed 200 OK in 2.5ms (Views: 2.4ms | ActiveRecord: 0.0ms)
845
+  (0.1ms) rollback transaction
846
+  (0.1ms) begin transaction
847
+  (0.0ms) rollback transaction
848
+  (0.0ms) begin transaction
849
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:39:47 -0430
850
+ Processing by ConfirmsController#index as HTML
851
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
852
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
853
+  (0.1ms) rollback transaction
854
+  (0.0ms) begin transaction
855
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:39:47 -0430
856
+ Processing by ConfirmsController#index as HTML
857
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
858
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
859
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 19:39:48 -0430
860
+ Processing by ConfirmsController#get_cow as HTML
861
+ Rendered confirms/get_cow.html.erb within layouts/application (0.0ms)
862
+ Completed 200 OK in 1.1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
863
+  (0.2ms) rollback transaction
864
+  (0.1ms) begin transaction
865
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:39:48 -0430
866
+ Processing by ConfirmsController#index as HTML
867
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
868
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
869
+  (0.1ms) rollback transaction
870
+  (0.1ms) begin transaction
871
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:39:48 -0430
872
+ Processing by ConfirmsController#index as HTML
873
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
874
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
875
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 19:39:49 -0430
876
+ Processing by ConfirmsController#delete_cow as JS
877
+ Rendered confirms/delete_cow.js.erb (0.0ms)
878
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
879
+  (0.2ms) rollback transaction
880
+  (0.1ms) begin transaction
881
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:39:49 -0430
882
+ Processing by ConfirmsController#index as HTML
883
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
884
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
885
+  (0.1ms) rollback transaction
886
+  (0.1ms) begin transaction
887
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:39:49 -0430
888
+ Processing by ConfirmsController#index as HTML
889
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
890
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
891
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 19:39:51 -0430
892
+ Processing by ConfirmsController#delete_cow as HTML
893
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.0ms)
894
+ Completed 200 OK in 1.1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
895
+  (0.1ms) rollback transaction
896
+  (0.1ms) begin transaction
897
+  (0.0ms) rollback transaction
898
+  (0.0ms) begin transaction
899
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:39:51 -0430
900
+ Processing by ConfirmsController#index as HTML
901
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
902
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
903
+  (0.1ms) rollback transaction
904
+  (0.1ms) begin transaction
905
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:39:51 -0430
906
+ Processing by ConfirmsController#index as HTML
907
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
908
+ Completed 200 OK in 1.9ms (Views: 1.9ms | ActiveRecord: 0.0ms)
909
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 19:39:52 -0430
910
+ Processing by ConfirmsController#get_cow as HTML
911
+ Rendered confirms/get_cow.html.erb within layouts/application (0.0ms)
912
+ Completed 200 OK in 1.1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
913
+  (0.1ms) rollback transaction
914
+  (0.1ms) begin transaction
915
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:39:52 -0430
916
+ Processing by ConfirmsController#index as HTML
917
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
918
+ Completed 200 OK in 1.7ms (Views: 1.7ms | ActiveRecord: 0.0ms)
919
+  (0.1ms) rollback transaction
920
+  (0.1ms) begin transaction
921
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:39:52 -0430
922
+ Processing by ConfirmsController#index as HTML
923
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
924
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
925
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 19:39:53 -0430
926
+ Processing by ConfirmsController#delete_cow as JS
927
+ Rendered confirms/delete_cow.js.erb (0.0ms)
928
+ Completed 200 OK in 0.8ms (Views: 0.6ms | ActiveRecord: 0.0ms)
929
+  (0.1ms) rollback transaction
930
+  (0.1ms) begin transaction
931
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:39:53 -0430
932
+ Processing by ConfirmsController#index as HTML
933
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
934
+ Completed 200 OK in 2.3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
935
+  (0.1ms) rollback transaction
936
+  (0.0ms) begin transaction
937
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 19:39:53 -0430
938
+ Processing by ConfirmsController#index as HTML
939
+ Rendered confirms/index.html.erb within layouts/application (1.0ms)
940
+ Completed 200 OK in 2.3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
941
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 19:39:55 -0430
942
+ Processing by ConfirmsController#delete_cow as HTML
943
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.0ms)
944
+ Completed 200 OK in 2.0ms (Views: 1.8ms | ActiveRecord: 0.0ms)
945
+  (0.1ms) rollback transaction
946
+ Connecting to database specified by database.yml
947
+  (0.4ms) begin transaction
948
+  (0.0ms) rollback transaction
949
+  (0.1ms) begin transaction
950
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:28:10 -0430
951
+ Processing by ConfirmsController#index as HTML
952
+ Rendered confirms/index.html.erb within layouts/application (4.5ms)
953
+ Completed 200 OK in 18.6ms (Views: 17.9ms | ActiveRecord: 0.0ms)
954
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-10-13 21:28:10 -0430
955
+ Served asset /application.css - 200 OK (14ms)
956
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-10-13 21:28:10 -0430
957
+ Served asset /application.js - 200 OK (37ms)
958
+  (0.1ms) rollback transaction
959
+  (0.1ms) begin transaction
960
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:28:11 -0430
961
+ Processing by ConfirmsController#index as HTML
962
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
963
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
964
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 21:28:12 -0430
965
+ Processing by ConfirmsController#delete_cow as JS
966
+ Rendered confirms/delete_cow.js.erb (0.4ms)
967
+ Completed 200 OK in 10.6ms (Views: 10.0ms | ActiveRecord: 0.0ms)
968
+  (0.1ms) rollback transaction
969
+  (0.1ms) begin transaction
970
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:28:12 -0430
971
+ Processing by ConfirmsController#index as HTML
972
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
973
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
974
+  (0.1ms) rollback transaction
975
+  (0.1ms) begin transaction
976
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:28:12 -0430
977
+ Processing by ConfirmsController#index as HTML
978
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
979
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
980
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 21:28:13 -0430
981
+ Processing by ConfirmsController#delete_cow as HTML
982
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.4ms)
983
+ Completed 200 OK in 2.5ms (Views: 2.3ms | ActiveRecord: 0.0ms)
984
+  (0.1ms) rollback transaction
985
+  (0.0ms) begin transaction
986
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:28:13 -0430
987
+ Processing by ConfirmsController#index as HTML
988
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
989
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
990
+  (0.1ms) rollback transaction
991
+  (0.1ms) begin transaction
992
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:28:13 -0430
993
+ Processing by ConfirmsController#index as HTML
994
+ Rendered confirms/index.html.erb within layouts/application (1.0ms)
995
+ Completed 200 OK in 2.3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
996
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 21:28:14 -0430
997
+ Processing by ConfirmsController#get_cow as HTML
998
+ Rendered confirms/get_cow.html.erb within layouts/application (0.4ms)
999
+ Completed 200 OK in 2.2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1000
+  (0.1ms) rollback transaction
1001
+  (0.1ms) begin transaction
1002
+  (0.0ms) rollback transaction
1003
+  (0.1ms) begin transaction
1004
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:28:15 -0430
1005
+ Processing by ConfirmsController#index as HTML
1006
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
1007
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1008
+  (0.1ms) rollback transaction
1009
+  (0.1ms) begin transaction
1010
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:28:15 -0430
1011
+ Processing by ConfirmsController#index as HTML
1012
+ Rendered confirms/index.html.erb within layouts/application (0.9ms)
1013
+ Completed 200 OK in 2.1ms (Views: 2.0ms | ActiveRecord: 0.0ms)
1014
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 21:28:16 -0430
1015
+ Processing by ConfirmsController#delete_cow as JS
1016
+ Rendered confirms/delete_cow.js.erb (0.1ms)
1017
+ Completed 200 OK in 0.9ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1018
+  (0.1ms) rollback transaction
1019
+  (0.1ms) begin transaction
1020
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:28:16 -0430
1021
+ Processing by ConfirmsController#index as HTML
1022
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
1023
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1024
+  (0.1ms) rollback transaction
1025
+  (0.1ms) begin transaction
1026
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:28:16 -0430
1027
+ Processing by ConfirmsController#index as HTML
1028
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
1029
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1030
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 21:28:17 -0430
1031
+ Processing by ConfirmsController#delete_cow as HTML
1032
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.0ms)
1033
+ Completed 200 OK in 1.8ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1034
+  (0.1ms) rollback transaction
1035
+  (0.1ms) begin transaction
1036
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:28:17 -0430
1037
+ Processing by ConfirmsController#index as HTML
1038
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
1039
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1040
+  (0.1ms) rollback transaction
1041
+  (0.1ms) begin transaction
1042
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:28:17 -0430
1043
+ Processing by ConfirmsController#index as HTML
1044
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
1045
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1046
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 21:28:19 -0430
1047
+ Processing by ConfirmsController#get_cow as HTML
1048
+ Rendered confirms/get_cow.html.erb within layouts/application (0.0ms)
1049
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1050
+  (0.1ms) rollback transaction
1051
+  (0.0ms) begin transaction
1052
+  (0.0ms) rollback transaction
1053
+  (0.1ms) begin transaction
1054
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:28:19 -0430
1055
+ Processing by ConfirmsController#index as HTML
1056
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
1057
+ Completed 200 OK in 1.7ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1058
+  (0.1ms) rollback transaction
1059
+  (0.1ms) begin transaction
1060
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:28:19 -0430
1061
+ Processing by ConfirmsController#index as HTML
1062
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
1063
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1064
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 21:28:20 -0430
1065
+ Processing by ConfirmsController#delete_cow as JS
1066
+ Rendered confirms/delete_cow.js.erb (0.0ms)
1067
+ Completed 200 OK in 0.6ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1068
+  (0.1ms) rollback transaction
1069
+  (0.1ms) begin transaction
1070
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:28:20 -0430
1071
+ Processing by ConfirmsController#index as HTML
1072
+ Rendered confirms/index.html.erb within layouts/application (1.2ms)
1073
+ Completed 200 OK in 2.4ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1074
+  (0.1ms) rollback transaction
1075
+  (0.1ms) begin transaction
1076
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:28:20 -0430
1077
+ Processing by ConfirmsController#index as HTML
1078
+ Rendered confirms/index.html.erb within layouts/application (0.9ms)
1079
+ Completed 200 OK in 2.1ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1080
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 21:28:21 -0430
1081
+ Processing by ConfirmsController#delete_cow as HTML
1082
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.0ms)
1083
+ Completed 200 OK in 1.9ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1084
+  (0.1ms) rollback transaction
1085
+  (0.1ms) begin transaction
1086
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:28:21 -0430
1087
+ Processing by ConfirmsController#index as HTML
1088
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
1089
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1090
+  (0.1ms) rollback transaction
1091
+  (0.1ms) begin transaction
1092
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:28:22 -0430
1093
+ Processing by ConfirmsController#index as HTML
1094
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
1095
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1096
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 21:28:23 -0430
1097
+ Processing by ConfirmsController#get_cow as HTML
1098
+ Rendered confirms/get_cow.html.erb within layouts/application (0.0ms)
1099
+ Completed 200 OK in 1.2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1100
+  (0.1ms) rollback transaction
1101
+ Connecting to database specified by database.yml
1102
+  (0.4ms) begin transaction
1103
+  (0.0ms) rollback transaction
1104
+  (0.1ms) begin transaction
1105
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:48:43 -0430
1106
+ Processing by ConfirmsController#index as HTML
1107
+ Rendered confirms/index.html.erb within layouts/application (4.0ms)
1108
+ Completed 200 OK in 18.2ms (Views: 17.7ms | ActiveRecord: 0.0ms)
1109
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-10-13 21:48:43 -0430
1110
+ Served asset /application.css - 200 OK (12ms)
1111
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-10-13 21:48:43 -0430
1112
+ Served asset /application.js - 200 OK (35ms)
1113
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 21:48:46 -0430
1114
+ Processing by ConfirmsController#get_cow as HTML
1115
+ Rendered confirms/get_cow.html.erb within layouts/application (0.4ms)
1116
+ Completed 200 OK in 3.2ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1117
+  (0.1ms) rollback transaction
1118
+  (0.1ms) begin transaction
1119
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:48:46 -0430
1120
+ Processing by ConfirmsController#index as HTML
1121
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
1122
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1123
+  (0.1ms) rollback transaction
1124
+  (0.1ms) begin transaction
1125
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:48:46 -0430
1126
+ Processing by ConfirmsController#index as HTML
1127
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
1128
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
1129
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 21:48:47 -0430
1130
+ Processing by ConfirmsController#delete_cow as HTML
1131
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.4ms)
1132
+ Completed 200 OK in 3.4ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1133
+  (0.1ms) rollback transaction
1134
+  (0.1ms) begin transaction
1135
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:48:47 -0430
1136
+ Processing by ConfirmsController#index as HTML
1137
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
1138
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1139
+  (0.1ms) rollback transaction
1140
+  (0.1ms) begin transaction
1141
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:48:47 -0430
1142
+ Processing by ConfirmsController#index as HTML
1143
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
1144
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1145
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 21:48:48 -0430
1146
+ Processing by ConfirmsController#delete_cow as JS
1147
+ Rendered confirms/delete_cow.js.erb (0.4ms)
1148
+ Completed 200 OK in 7.2ms (Views: 6.9ms | ActiveRecord: 0.0ms)
1149
+  (0.1ms) rollback transaction
1150
+  (0.1ms) begin transaction
1151
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:48:48 -0430
1152
+ Processing by ConfirmsController#index as HTML
1153
+ Rendered confirms/index.html.erb within layouts/application (1.2ms)
1154
+ Completed 200 OK in 4.0ms (Views: 3.9ms | ActiveRecord: 0.0ms)
1155
+  (0.1ms) rollback transaction
1156
+  (0.1ms) begin transaction
1157
+  (0.0ms) rollback transaction
1158
+  (0.0ms) begin transaction
1159
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:48:49 -0430
1160
+ Processing by ConfirmsController#index as HTML
1161
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
1162
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1163
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 21:48:50 -0430
1164
+ Processing by ConfirmsController#get_cow as HTML
1165
+ Rendered confirms/get_cow.html.erb within layouts/application (0.0ms)
1166
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1167
+  (0.1ms) rollback transaction
1168
+  (0.1ms) begin transaction
1169
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:48:50 -0430
1170
+ Processing by ConfirmsController#index as HTML
1171
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
1172
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
1173
+  (0.1ms) rollback transaction
1174
+  (0.1ms) begin transaction
1175
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:48:50 -0430
1176
+ Processing by ConfirmsController#index as HTML
1177
+ Rendered confirms/index.html.erb within layouts/application (0.9ms)
1178
+ Completed 200 OK in 2.2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
1179
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 21:48:51 -0430
1180
+ Processing by ConfirmsController#delete_cow as HTML
1181
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.0ms)
1182
+ Completed 200 OK in 1.3ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1183
+  (0.1ms) rollback transaction
1184
+  (0.1ms) begin transaction
1185
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:48:51 -0430
1186
+ Processing by ConfirmsController#index as HTML
1187
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
1188
+ Completed 200 OK in 2.3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
1189
+  (0.1ms) rollback transaction
1190
+  (0.1ms) begin transaction
1191
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:48:51 -0430
1192
+ Processing by ConfirmsController#index as HTML
1193
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
1194
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1195
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 21:48:52 -0430
1196
+ Processing by ConfirmsController#delete_cow as JS
1197
+ Rendered confirms/delete_cow.js.erb (0.0ms)
1198
+ Completed 200 OK in 1.7ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1199
+  (0.1ms) rollback transaction
1200
+  (0.1ms) begin transaction
1201
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:48:52 -0430
1202
+ Processing by ConfirmsController#index as HTML
1203
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
1204
+ Completed 200 OK in 1.8ms (Views: 1.8ms | ActiveRecord: 0.0ms)
1205
+  (0.1ms) rollback transaction
1206
+  (0.1ms) begin transaction
1207
+  (0.0ms) rollback transaction
1208
+  (0.0ms) begin transaction
1209
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:48:53 -0430
1210
+ Processing by ConfirmsController#index as HTML
1211
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
1212
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1213
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 21:48:54 -0430
1214
+ Processing by ConfirmsController#get_cow as HTML
1215
+ Rendered confirms/get_cow.html.erb within layouts/application (0.0ms)
1216
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1217
+  (0.1ms) rollback transaction
1218
+  (0.1ms) begin transaction
1219
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:48:54 -0430
1220
+ Processing by ConfirmsController#index as HTML
1221
+ Rendered confirms/index.html.erb within layouts/application (1.1ms)
1222
+ Completed 200 OK in 3.0ms (Views: 2.9ms | ActiveRecord: 0.0ms)
1223
+  (0.1ms) rollback transaction
1224
+  (0.1ms) begin transaction
1225
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:48:54 -0430
1226
+ Processing by ConfirmsController#index as HTML
1227
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
1228
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
1229
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 21:48:55 -0430
1230
+ Processing by ConfirmsController#delete_cow as HTML
1231
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.0ms)
1232
+ Completed 200 OK in 1.4ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1233
+  (0.1ms) rollback transaction
1234
+  (0.1ms) begin transaction
1235
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:48:55 -0430
1236
+ Processing by ConfirmsController#index as HTML
1237
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
1238
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1239
+  (0.1ms) rollback transaction
1240
+  (0.1ms) begin transaction
1241
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:48:55 -0430
1242
+ Processing by ConfirmsController#index as HTML
1243
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
1244
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1245
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 21:48:57 -0430
1246
+ Processing by ConfirmsController#delete_cow as JS
1247
+ Rendered confirms/delete_cow.js.erb (0.0ms)
1248
+ Completed 200 OK in 0.6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1249
+  (0.1ms) rollback transaction
1250
+  (0.0ms) begin transaction
1251
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 21:48:57 -0430
1252
+ Processing by ConfirmsController#index as HTML
1253
+ Rendered confirms/index.html.erb within layouts/application (1.0ms)
1254
+ Completed 200 OK in 2.1ms (Views: 2.0ms | ActiveRecord: 0.0ms)
1255
+  (0.0ms) rollback transaction
1256
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:37:18 -0430
1257
+ Processing by ConfirmsController#index as HTML
1258
+ Rendered confirms/index.html.erb within layouts/application (3.7ms)
1259
+ Completed 200 OK in 19.9ms (Views: 19.4ms)
1260
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-10-13 23:37:18 -0430
1261
+ Served asset /application.css - 200 OK (14ms)
1262
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-10-13 23:37:18 -0430
1263
+ Served asset /application.js - 200 OK (25ms)
1264
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 23:37:20 -0430
1265
+ Processing by ConfirmsController#delete_cow as JS
1266
+ Rendered confirms/delete_cow.js.erb (0.4ms)
1267
+ Completed 200 OK in 11.1ms (Views: 10.7ms)
1268
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:37:20 -0430
1269
+ Processing by ConfirmsController#index as HTML
1270
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
1271
+ Completed 200 OK in 1.8ms (Views: 1.7ms)
1272
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:37:20 -0430
1273
+ Processing by ConfirmsController#index as HTML
1274
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
1275
+ Completed 200 OK in 2.0ms (Views: 2.0ms)
1276
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 23:37:21 -0430
1277
+ Processing by ConfirmsController#delete_cow as HTML
1278
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.5ms)
1279
+ Completed 200 OK in 2.4ms (Views: 2.3ms)
1280
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:37:21 -0430
1281
+ Processing by ConfirmsController#index as HTML
1282
+ Rendered confirms/index.html.erb within layouts/application (0.9ms)
1283
+ Completed 200 OK in 2.1ms (Views: 2.0ms)
1284
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:37:21 -0430
1285
+ Processing by ConfirmsController#index as HTML
1286
+ Rendered confirms/index.html.erb within layouts/application (1.1ms)
1287
+ Completed 200 OK in 3.2ms (Views: 3.0ms)
1288
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 23:37:22 -0430
1289
+ Processing by ConfirmsController#get_cow as HTML
1290
+ Rendered confirms/get_cow.html.erb within layouts/application (0.4ms)
1291
+ Completed 200 OK in 2.9ms (Views: 2.4ms)
1292
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:37:23 -0430
1293
+ Processing by ConfirmsController#index as HTML
1294
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
1295
+ Completed 200 OK in 1.7ms (Views: 1.7ms)
1296
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:37:23 -0430
1297
+ Processing by ConfirmsController#index as HTML
1298
+ Rendered confirms/index.html.erb within layouts/application (1.2ms)
1299
+ Completed 200 OK in 2.4ms (Views: 2.3ms)
1300
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 23:37:24 -0430
1301
+ Processing by ConfirmsController#delete_cow as JS
1302
+ Rendered confirms/delete_cow.js.erb (0.0ms)
1303
+ Completed 200 OK in 0.7ms (Views: 0.5ms)
1304
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:37:24 -0430
1305
+ Processing by ConfirmsController#index as HTML
1306
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
1307
+ Completed 200 OK in 1.7ms (Views: 1.6ms)
1308
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:37:24 -0430
1309
+ Processing by ConfirmsController#index as HTML
1310
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
1311
+ Completed 200 OK in 1.9ms (Views: 1.8ms)
1312
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 23:37:25 -0430
1313
+ Processing by ConfirmsController#delete_cow as HTML
1314
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.0ms)
1315
+ Completed 200 OK in 1.4ms (Views: 1.3ms)
1316
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:37:25 -0430
1317
+ Processing by ConfirmsController#index as HTML
1318
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
1319
+ Completed 200 OK in 1.8ms (Views: 1.8ms)
1320
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:37:25 -0430
1321
+ Processing by ConfirmsController#index as HTML
1322
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
1323
+ Completed 200 OK in 2.3ms (Views: 2.2ms)
1324
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 23:37:27 -0430
1325
+ Processing by ConfirmsController#get_cow as HTML
1326
+ Rendered confirms/get_cow.html.erb within layouts/application (0.0ms)
1327
+ Completed 200 OK in 1.2ms (Views: 1.1ms)
1328
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:37:27 -0430
1329
+ Processing by ConfirmsController#index as HTML
1330
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
1331
+ Completed 200 OK in 1.7ms (Views: 1.6ms)
1332
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:37:27 -0430
1333
+ Processing by ConfirmsController#index as HTML
1334
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
1335
+ Completed 200 OK in 2.1ms (Views: 2.0ms)
1336
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 23:37:28 -0430
1337
+ Processing by ConfirmsController#delete_cow as JS
1338
+ Rendered confirms/delete_cow.js.erb (0.0ms)
1339
+ Completed 200 OK in 0.6ms (Views: 0.5ms)
1340
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:37:28 -0430
1341
+ Processing by ConfirmsController#index as HTML
1342
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
1343
+ Completed 200 OK in 2.0ms (Views: 1.9ms)
1344
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:37:28 -0430
1345
+ Processing by ConfirmsController#index as HTML
1346
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
1347
+ Completed 200 OK in 1.7ms (Views: 1.6ms)
1348
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 23:37:29 -0430
1349
+ Processing by ConfirmsController#delete_cow as HTML
1350
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.0ms)
1351
+ Completed 200 OK in 1.2ms (Views: 1.1ms)
1352
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:37:29 -0430
1353
+ Processing by ConfirmsController#index as HTML
1354
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
1355
+ Completed 200 OK in 2.0ms (Views: 1.9ms)
1356
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:37:29 -0430
1357
+ Processing by ConfirmsController#index as HTML
1358
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
1359
+ Completed 200 OK in 1.7ms (Views: 1.6ms)
1360
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 23:37:31 -0430
1361
+ Processing by ConfirmsController#get_cow as HTML
1362
+ Rendered confirms/get_cow.html.erb within layouts/application (0.0ms)
1363
+ Completed 200 OK in 1.1ms (Views: 1.0ms)
1364
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:37:31 -0430
1365
+ Processing by ConfirmsController#index as HTML
1366
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
1367
+ Completed 200 OK in 1.9ms (Views: 1.8ms)
1368
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:39:53 -0430
1369
+ Processing by ConfirmsController#index as HTML
1370
+ Rendered confirms/index.html.erb within layouts/application (2.6ms)
1371
+ Completed 200 OK in 10.8ms (Views: 10.5ms)
1372
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-10-13 23:39:53 -0430
1373
+ Served asset /application.css - 200 OK (8ms)
1374
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-10-13 23:39:53 -0430
1375
+ Served asset /application.js - 200 OK (10ms)
1376
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 23:39:55 -0430
1377
+ Processing by ConfirmsController#delete_cow as JS
1378
+ Rendered confirms/delete_cow.js.erb (0.4ms)
1379
+ Completed 200 OK in 2.6ms (Views: 2.3ms)
1380
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:39:55 -0430
1381
+ Processing by ConfirmsController#index as HTML
1382
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
1383
+ Completed 200 OK in 1.7ms (Views: 1.6ms)
1384
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:39:55 -0430
1385
+ Processing by ConfirmsController#index as HTML
1386
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
1387
+ Completed 200 OK in 1.9ms (Views: 1.8ms)
1388
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 23:39:56 -0430
1389
+ Processing by ConfirmsController#delete_cow as HTML
1390
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.7ms)
1391
+ Completed 200 OK in 3.2ms (Views: 3.0ms)
1392
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:39:56 -0430
1393
+ Processing by ConfirmsController#index as HTML
1394
+ Rendered confirms/index.html.erb within layouts/application (1.1ms)
1395
+ Completed 200 OK in 2.7ms (Views: 2.6ms)
1396
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:39:56 -0430
1397
+ Processing by ConfirmsController#index as HTML
1398
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
1399
+ Completed 200 OK in 1.9ms (Views: 1.9ms)
1400
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 23:39:58 -0430
1401
+ Processing by ConfirmsController#get_cow as HTML
1402
+ Rendered confirms/get_cow.html.erb within layouts/application (0.3ms)
1403
+ Completed 200 OK in 1.9ms (Views: 1.7ms)
1404
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:39:58 -0430
1405
+ Processing by ConfirmsController#index as HTML
1406
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
1407
+ Completed 200 OK in 1.7ms (Views: 1.7ms)
1408
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:39:58 -0430
1409
+ Processing by ConfirmsController#index as HTML
1410
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
1411
+ Completed 200 OK in 1.7ms (Views: 1.6ms)
1412
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 23:39:59 -0430
1413
+ Processing by ConfirmsController#delete_cow as JS
1414
+ Rendered confirms/delete_cow.js.erb (0.0ms)
1415
+ Completed 200 OK in 0.7ms (Views: 0.4ms)
1416
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:39:59 -0430
1417
+ Processing by ConfirmsController#index as HTML
1418
+ Rendered confirms/index.html.erb within layouts/application (1.0ms)
1419
+ Completed 200 OK in 2.1ms (Views: 2.0ms)
1420
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:39:59 -0430
1421
+ Processing by ConfirmsController#index as HTML
1422
+ Rendered confirms/index.html.erb within layouts/application (0.9ms)
1423
+ Completed 200 OK in 2.0ms (Views: 1.9ms)
1424
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 23:40:00 -0430
1425
+ Processing by ConfirmsController#delete_cow as HTML
1426
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.0ms)
1427
+ Completed 200 OK in 1.2ms (Views: 1.0ms)
1428
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:40:00 -0430
1429
+ Processing by ConfirmsController#index as HTML
1430
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
1431
+ Completed 200 OK in 2.1ms (Views: 2.1ms)
1432
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:40:01 -0430
1433
+ Processing by ConfirmsController#index as HTML
1434
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
1435
+ Completed 200 OK in 1.8ms (Views: 1.7ms)
1436
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 23:40:02 -0430
1437
+ Processing by ConfirmsController#get_cow as HTML
1438
+ Rendered confirms/get_cow.html.erb within layouts/application (0.0ms)
1439
+ Completed 200 OK in 1.1ms (Views: 1.0ms)
1440
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:40:02 -0430
1441
+ Processing by ConfirmsController#index as HTML
1442
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
1443
+ Completed 200 OK in 1.9ms (Views: 1.8ms)
1444
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:40:02 -0430
1445
+ Processing by ConfirmsController#index as HTML
1446
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
1447
+ Completed 200 OK in 1.7ms (Views: 1.6ms)
1448
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 23:40:03 -0430
1449
+ Processing by ConfirmsController#delete_cow as JS
1450
+ Rendered confirms/delete_cow.js.erb (0.0ms)
1451
+ Completed 200 OK in 1.0ms (Views: 0.8ms)
1452
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:40:03 -0430
1453
+ Processing by ConfirmsController#index as HTML
1454
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
1455
+ Completed 200 OK in 1.7ms (Views: 1.6ms)
1456
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:40:03 -0430
1457
+ Processing by ConfirmsController#index as HTML
1458
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
1459
+ Completed 200 OK in 1.9ms (Views: 1.8ms)
1460
+ Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-13 23:40:04 -0430
1461
+ Processing by ConfirmsController#delete_cow as HTML
1462
+ Rendered confirms/delete_cow.html.erb within layouts/application (0.0ms)
1463
+ Completed 200 OK in 2.1ms (Views: 1.9ms)
1464
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:40:04 -0430
1465
+ Processing by ConfirmsController#index as HTML
1466
+ Rendered confirms/index.html.erb within layouts/application (0.6ms)
1467
+ Completed 200 OK in 1.7ms (Views: 1.6ms)
1468
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:40:05 -0430
1469
+ Processing by ConfirmsController#index as HTML
1470
+ Rendered confirms/index.html.erb within layouts/application (0.8ms)
1471
+ Completed 200 OK in 2.3ms (Views: 2.2ms)
1472
+ Started GET "/get_cow" for 127.0.0.1 at 2014-10-13 23:40:06 -0430
1473
+ Processing by ConfirmsController#get_cow as HTML
1474
+ Rendered confirms/get_cow.html.erb within layouts/application (0.0ms)
1475
+ Completed 200 OK in 1.2ms (Views: 1.1ms)
1476
+ Started GET "/confirms_page" for 127.0.0.1 at 2014-10-13 23:40:06 -0430
1477
+ Processing by ConfirmsController#index as HTML
1478
+ Rendered confirms/index.html.erb within layouts/application (0.7ms)
1479
+ Completed 200 OK in 1.9ms (Views: 1.8ms)