sweet-alert-confirm 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Rakefile +1 -1
- data/lib/assets/javascripts/sweet-alert-confirm.js +16 -4
- data/lib/sweet-alert-confirm/version.rb +1 -1
- data/spec/dummy-rails3/log/development.log +0 -1284
- data/spec/dummy-rails3/log/test.log +0 -2045
- data/spec/dummy-rails3/tmp/cache/assets/BF6/DF0/sprockets%2F285744e0e3233126b590652597a6846c +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/C5D/260/sprockets%2Ffe17576541881f7db15017c3b9647194 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/C71/960/sprockets%2F5c3859335128c2f0cc31422bb33e1674 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/CA1/D70/sprockets%2F32526aac68f06e61515371c202fe44a7 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/CD4/E60/sprockets%2F0ae34929c3b851d7104f8307a2c02ed8 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/CEC/780/sprockets%2Fc3c981b384b293911ee64e25c1c5779f +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/CEE/CF0/sprockets%2F5d33a38968a71a6b4772723ae94ee77c +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/CF3/FC0/sprockets%2F9b695713056bfc62c3198c75829dbd6e +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/D0D/320/sprockets%2Fb2a9b609874a7a625a68223b607ac6ee +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/D1A/340/sprockets%2Fb9708e6882954f6dabf115cf4df62330 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/D4C/240/sprockets%2F3d9d437b39287fd1b6cc5a556a590f5f +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/D55/740/sprockets%2F4963d046e3b5cf4e73cd9cd6c8089f29 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/D71/6F0/sprockets%2F67621a32b646ce75e6dff65f8aa710bc +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/DA3/C40/sprockets%2F93fac7c58d64b927fa52c22cbb38d93a +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/DAD/440/sprockets%2Fb0ab4f86a4241a5ba22ecd830eb02e5a +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/DC5/160/sprockets%2Fc403bbe0253f8ef0158efced2c2d4f45 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/DDD/0A0/sprockets%2F924e879dd0cae5bfcd974a9f046df50c +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/DFB/530/sprockets%2Fda0209bfac7d7fd73e9da2d19d2b156f +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/features/sweet_alert_confirm_spec.rb +28 -0
- data/spec/spec_helper.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 32e9ada7f2a5dde5e4b65cc1b3e2dcfe50f2e528
|
4
|
+
data.tar.gz: eb855c29b0a13b04e434d53f4130c4c7c4b9b2e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e46869d170b981debe6426a8e1ea21d2760032e20c2aa4b9e034b14bb80ce890e27aeecbed91e453721188dd499df25aacb236719847771024119c563ffd4ee
|
7
|
+
data.tar.gz: c453374d66b91d4f3f491a8e9112c9557b8a0bbceef0ae6b093792c39144c5a759513967a8872227ffafc08a0df7b580be86afe9ab248eb8dc698b0d624a9e26
|
data/Rakefile
CHANGED
@@ -38,15 +38,27 @@
|
|
38
38
|
message = $linkToVerify.attr('data-sweet-alert-confirm')
|
39
39
|
swalOptions['title'] = message
|
40
40
|
swal(swalOptions, function(r){
|
41
|
-
if (swalOptions['remote'] === true) {
|
42
|
-
|
41
|
+
if (swalOptions['remote'] === true) {
|
42
|
+
if (r === false) {
|
43
|
+
return false;
|
44
|
+
} else {
|
45
|
+
$.rails.handleRemote($linkToVerify)
|
46
|
+
}
|
43
47
|
}
|
44
48
|
else if(swalOptions[ 'method' ] !== undefined) {
|
45
|
-
|
49
|
+
if (r === false) {
|
50
|
+
return false;
|
51
|
+
} else {
|
52
|
+
$.rails.handleMethod($linkToVerify);
|
53
|
+
}
|
46
54
|
}
|
47
55
|
else {
|
48
56
|
//[FIXME]Check this im not sure about this
|
49
|
-
|
57
|
+
if (r === false) {
|
58
|
+
return false;
|
59
|
+
} else {
|
60
|
+
window.location.href = $linkToVerify.attr('href');
|
61
|
+
}
|
50
62
|
}
|
51
63
|
});
|
52
64
|
|
@@ -14,1287 +14,3 @@ Connecting to database specified by database.yml
|
|
14
14
|
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
15
15
|
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
16
16
|
Connecting to database specified by database.yml
|
17
|
-
Connecting to database specified by database.yml
|
18
|
-
|
19
|
-
|
20
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:23:04 -0430
|
21
|
-
Processing by ConfirmsController#index as HTML
|
22
|
-
Rendered confirms/index.html.erb within layouts/application (1.9ms)
|
23
|
-
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:0x007fd3ed557e90>
|
24
|
-
|
25
|
-
Compiled sweet-alert/sweet-alert.css (79ms) (pid 4530)
|
26
|
-
Compiled sweet-alert/index.css (84ms) (pid 4530)
|
27
|
-
Compiled application.scss.css (1ms) (pid 4530)
|
28
|
-
Compiled application.css (100ms) (pid 4530)
|
29
|
-
Compiled jquery.js (7ms) (pid 4530)
|
30
|
-
Compiled jquery_ujs.js (0ms) (pid 4530)
|
31
|
-
Compiled sweet-alert/sweet-alert.js (0ms) (pid 4530)
|
32
|
-
Compiled sweet-alert/sweet-alert.min.js (0ms) (pid 4530)
|
33
|
-
Compiled sweet-alert/index.js (10ms) (pid 4530)
|
34
|
-
Compiled sweet-alert-confirm.js (1ms) (pid 4530)
|
35
|
-
Compiled application.js (69ms) (pid 4530)
|
36
|
-
Completed 200 OK in 197.1ms (Views: 196.8ms)
|
37
|
-
|
38
|
-
|
39
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:23:05 -0430
|
40
|
-
Compiled sweet-alert/sweet-alert.css (0ms) (pid 4530)
|
41
|
-
Served asset /sweet-alert/sweet-alert.css - 200 OK (22ms)
|
42
|
-
|
43
|
-
|
44
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:23:05 -0430
|
45
|
-
Served asset /sweet-alert/index.css - 200 OK (5ms)
|
46
|
-
|
47
|
-
|
48
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:23:05 -0430
|
49
|
-
Served asset /application.scss.css - 200 OK (12ms)
|
50
|
-
|
51
|
-
|
52
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:23:05 -0430
|
53
|
-
Served asset /application.css - 200 OK (11ms)
|
54
|
-
|
55
|
-
|
56
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:23:05 -0430
|
57
|
-
Served asset /jquery_ujs.js - 200 OK (4ms)
|
58
|
-
|
59
|
-
|
60
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:23:05 -0430
|
61
|
-
Served asset /jquery.js - 200 OK (3ms)
|
62
|
-
|
63
|
-
|
64
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:23:05 -0430
|
65
|
-
Served asset /sweet-alert/sweet-alert.js - 200 OK (3ms)
|
66
|
-
|
67
|
-
|
68
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:23:05 -0430
|
69
|
-
Served asset /sweet-alert/sweet-alert.min.js - 200 OK (3ms)
|
70
|
-
|
71
|
-
|
72
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:23:05 -0430
|
73
|
-
Served asset /sweet-alert/index.js - 200 OK (5ms)
|
74
|
-
|
75
|
-
|
76
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:23:05 -0430
|
77
|
-
Served asset /sweet-alert-confirm.js - 200 OK (6ms)
|
78
|
-
|
79
|
-
|
80
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:23:05 -0430
|
81
|
-
Served asset /application.js - 200 OK (7ms)
|
82
|
-
|
83
|
-
|
84
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:24:35 -0430
|
85
|
-
Processing by ConfirmsController#index as HTML
|
86
|
-
Rendered confirms/index.html.erb within layouts/application (0.7ms)
|
87
|
-
Completed 200 OK in 4.9ms (Views: 4.8ms)
|
88
|
-
|
89
|
-
|
90
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:24:35 -0430
|
91
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (0ms)
|
92
|
-
|
93
|
-
|
94
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:24:35 -0430
|
95
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (0ms)
|
96
|
-
|
97
|
-
|
98
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:24:35 -0430
|
99
|
-
Served asset /application.scss.css - 304 Not Modified (0ms)
|
100
|
-
|
101
|
-
|
102
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:24:35 -0430
|
103
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
104
|
-
|
105
|
-
|
106
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:24:35 -0430
|
107
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
108
|
-
|
109
|
-
|
110
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:24:35 -0430
|
111
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
112
|
-
|
113
|
-
|
114
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:24:35 -0430
|
115
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (0ms)
|
116
|
-
|
117
|
-
|
118
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:24:35 -0430
|
119
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (0ms)
|
120
|
-
|
121
|
-
|
122
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:24:35 -0430
|
123
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (0ms)
|
124
|
-
|
125
|
-
|
126
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:24:35 -0430
|
127
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (0ms)
|
128
|
-
|
129
|
-
|
130
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:24:35 -0430
|
131
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
132
|
-
|
133
|
-
|
134
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:25:33 -0430
|
135
|
-
Processing by ConfirmsController#index as HTML
|
136
|
-
Rendered confirms/index.html.erb within layouts/application (0.6ms)
|
137
|
-
Completed 200 OK in 5.1ms (Views: 5.0ms)
|
138
|
-
|
139
|
-
|
140
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:25:33 -0430
|
141
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (0ms)
|
142
|
-
|
143
|
-
|
144
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:25:33 -0430
|
145
|
-
Served asset /application.scss.css - 304 Not Modified (0ms)
|
146
|
-
|
147
|
-
|
148
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:25:33 -0430
|
149
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
150
|
-
|
151
|
-
|
152
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:25:33 -0430
|
153
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
154
|
-
|
155
|
-
|
156
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:25:33 -0430
|
157
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (0ms)
|
158
|
-
|
159
|
-
|
160
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:25:33 -0430
|
161
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
162
|
-
|
163
|
-
|
164
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:25:33 -0430
|
165
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (0ms)
|
166
|
-
|
167
|
-
|
168
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:25:33 -0430
|
169
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (0ms)
|
170
|
-
|
171
|
-
|
172
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:25:33 -0430
|
173
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (0ms)
|
174
|
-
|
175
|
-
|
176
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:25:33 -0430
|
177
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
178
|
-
|
179
|
-
|
180
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:25:33 -0430
|
181
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (0ms)
|
182
|
-
|
183
|
-
|
184
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:30:16 -0430
|
185
|
-
Processing by ConfirmsController#index as HTML
|
186
|
-
Rendered confirms/index.html.erb within layouts/application (1.9ms)
|
187
|
-
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:0x007fcf5f11c3e0>
|
188
|
-
|
189
|
-
Compiled sweet-alert/sweet-alert.css (79ms) (pid 4719)
|
190
|
-
Compiled sweet-alert/index.css (84ms) (pid 4719)
|
191
|
-
Compiled application.scss.css (1ms) (pid 4719)
|
192
|
-
Compiled application.css (96ms) (pid 4719)
|
193
|
-
Compiled jquery.js (3ms) (pid 4719)
|
194
|
-
Compiled jquery_ujs.js (0ms) (pid 4719)
|
195
|
-
Compiled sweet-alert/sweet-alert.js (0ms) (pid 4719)
|
196
|
-
Compiled sweet-alert/sweet-alert.min.js (0ms) (pid 4719)
|
197
|
-
Compiled sweet-alert/index.js (8ms) (pid 4719)
|
198
|
-
Compiled sweet-alert-confirm.js (2ms) (pid 4719)
|
199
|
-
Compiled application.js (59ms) (pid 4719)
|
200
|
-
Completed 200 OK in 192.8ms (Views: 192.6ms)
|
201
|
-
|
202
|
-
|
203
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:30:16 -0430
|
204
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (13ms)
|
205
|
-
|
206
|
-
|
207
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:30:16 -0430
|
208
|
-
Served asset /jquery_ujs.js - 304 Not Modified (3ms)
|
209
|
-
|
210
|
-
|
211
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:30:16 -0430
|
212
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (6ms)
|
213
|
-
|
214
|
-
|
215
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:30:16 -0430
|
216
|
-
Served asset /application.scss.css - 304 Not Modified (11ms)
|
217
|
-
|
218
|
-
|
219
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:30:16 -0430
|
220
|
-
Served asset /jquery.js - 304 Not Modified (3ms)
|
221
|
-
|
222
|
-
|
223
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:30:16 -0430
|
224
|
-
Served asset /application.css - 304 Not Modified (11ms)
|
225
|
-
|
226
|
-
|
227
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:30:16 -0430
|
228
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (3ms)
|
229
|
-
|
230
|
-
|
231
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:30:16 -0430
|
232
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (2ms)
|
233
|
-
|
234
|
-
|
235
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:30:16 -0430
|
236
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (5ms)
|
237
|
-
|
238
|
-
|
239
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:30:16 -0430
|
240
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (6ms)
|
241
|
-
|
242
|
-
|
243
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:30:16 -0430
|
244
|
-
Served asset /application.js - 304 Not Modified (8ms)
|
245
|
-
|
246
|
-
|
247
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:32:25 -0430
|
248
|
-
Processing by ConfirmsController#index as HTML
|
249
|
-
Rendered confirms/index.html.erb within layouts/application (0.7ms)
|
250
|
-
Completed 200 OK in 5.0ms (Views: 4.9ms)
|
251
|
-
|
252
|
-
|
253
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:32:25 -0430
|
254
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (0ms)
|
255
|
-
|
256
|
-
|
257
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:32:25 -0430
|
258
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (0ms)
|
259
|
-
|
260
|
-
|
261
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:32:25 -0430
|
262
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
263
|
-
|
264
|
-
|
265
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:32:25 -0430
|
266
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
267
|
-
|
268
|
-
|
269
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:32:25 -0430
|
270
|
-
Served asset /application.scss.css - 304 Not Modified (0ms)
|
271
|
-
|
272
|
-
|
273
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:32:25 -0430
|
274
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (0ms)
|
275
|
-
|
276
|
-
|
277
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:32:25 -0430
|
278
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
279
|
-
|
280
|
-
|
281
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:32:25 -0430
|
282
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (0ms)
|
283
|
-
|
284
|
-
|
285
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:32:25 -0430
|
286
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (0ms)
|
287
|
-
|
288
|
-
|
289
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:32:25 -0430
|
290
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (0ms)
|
291
|
-
|
292
|
-
|
293
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:32:25 -0430
|
294
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
295
|
-
|
296
|
-
|
297
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:32:35 -0430
|
298
|
-
Processing by ConfirmsController#index as HTML
|
299
|
-
Rendered confirms/index.html.erb within layouts/application (1.9ms)
|
300
|
-
Completed 200 OK in 22.4ms (Views: 22.1ms)
|
301
|
-
|
302
|
-
|
303
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:32:35 -0430
|
304
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (3ms)
|
305
|
-
|
306
|
-
|
307
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:32:35 -0430
|
308
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (3ms)
|
309
|
-
|
310
|
-
|
311
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:32:35 -0430
|
312
|
-
Served asset /jquery.js - 304 Not Modified (5ms)
|
313
|
-
|
314
|
-
|
315
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:32:35 -0430
|
316
|
-
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
317
|
-
|
318
|
-
|
319
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:32:35 -0430
|
320
|
-
Served asset /application.css - 304 Not Modified (8ms)
|
321
|
-
|
322
|
-
|
323
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:32:35 -0430
|
324
|
-
Served asset /application.scss.css - 304 Not Modified (7ms)
|
325
|
-
|
326
|
-
|
327
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:32:35 -0430
|
328
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (3ms)
|
329
|
-
|
330
|
-
|
331
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:32:35 -0430
|
332
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (2ms)
|
333
|
-
|
334
|
-
|
335
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:32:35 -0430
|
336
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (5ms)
|
337
|
-
|
338
|
-
|
339
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:32:35 -0430
|
340
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (7ms)
|
341
|
-
|
342
|
-
|
343
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:32:35 -0430
|
344
|
-
Served asset /application.js - 304 Not Modified (7ms)
|
345
|
-
|
346
|
-
|
347
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:33:10 -0430
|
348
|
-
Processing by ConfirmsController#index as HTML
|
349
|
-
Rendered confirms/index.html.erb within layouts/application (2.4ms)
|
350
|
-
Completed 200 OK in 23.5ms (Views: 23.3ms)
|
351
|
-
|
352
|
-
|
353
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:33:11 -0430
|
354
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (4ms)
|
355
|
-
|
356
|
-
|
357
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:33:11 -0430
|
358
|
-
Served asset /application.scss.css - 304 Not Modified (11ms)
|
359
|
-
|
360
|
-
|
361
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:33:11 -0430
|
362
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (5ms)
|
363
|
-
|
364
|
-
|
365
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:11 -0430
|
366
|
-
Served asset /jquery.js - 304 Not Modified (3ms)
|
367
|
-
|
368
|
-
|
369
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:33:11 -0430
|
370
|
-
Served asset /application.css - 304 Not Modified (13ms)
|
371
|
-
|
372
|
-
|
373
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:11 -0430
|
374
|
-
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
375
|
-
|
376
|
-
|
377
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:11 -0430
|
378
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (1ms)
|
379
|
-
|
380
|
-
|
381
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:11 -0430
|
382
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (3ms)
|
383
|
-
|
384
|
-
|
385
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:11 -0430
|
386
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (6ms)
|
387
|
-
|
388
|
-
|
389
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:11 -0430
|
390
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (5ms)
|
391
|
-
|
392
|
-
|
393
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:11 -0430
|
394
|
-
Served asset /application.js - 304 Not Modified (6ms)
|
395
|
-
|
396
|
-
|
397
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:33:42 -0430
|
398
|
-
Processing by ConfirmsController#index as HTML
|
399
|
-
Rendered confirms/index.html.erb within layouts/application (1.9ms)
|
400
|
-
Completed 200 OK in 26.2ms (Views: 25.9ms)
|
401
|
-
|
402
|
-
|
403
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:33:42 -0430
|
404
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (6ms)
|
405
|
-
|
406
|
-
|
407
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:33:42 -0430
|
408
|
-
Served asset /application.css - 304 Not Modified (8ms)
|
409
|
-
|
410
|
-
|
411
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:42 -0430
|
412
|
-
Served asset /jquery.js - 304 Not Modified (4ms)
|
413
|
-
|
414
|
-
|
415
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:33:42 -0430
|
416
|
-
Served asset /application.scss.css - 304 Not Modified (6ms)
|
417
|
-
|
418
|
-
|
419
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:42 -0430
|
420
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (4ms)
|
421
|
-
|
422
|
-
|
423
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:33:42 -0430
|
424
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (6ms)
|
425
|
-
|
426
|
-
|
427
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:42 -0430
|
428
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (3ms)
|
429
|
-
|
430
|
-
|
431
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:42 -0430
|
432
|
-
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
433
|
-
|
434
|
-
|
435
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:42 -0430
|
436
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (5ms)
|
437
|
-
|
438
|
-
|
439
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:42 -0430
|
440
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (4ms)
|
441
|
-
|
442
|
-
|
443
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:42 -0430
|
444
|
-
Served asset /application.js - 304 Not Modified (6ms)
|
445
|
-
|
446
|
-
|
447
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:33:42 -0430
|
448
|
-
Processing by ConfirmsController#index as HTML
|
449
|
-
Rendered confirms/index.html.erb within layouts/application (0.6ms)
|
450
|
-
Completed 200 OK in 4.7ms (Views: 4.6ms)
|
451
|
-
|
452
|
-
|
453
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:33:43 -0430
|
454
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (0ms)
|
455
|
-
|
456
|
-
|
457
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:33:43 -0430
|
458
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (0ms)
|
459
|
-
|
460
|
-
|
461
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:33:43 -0430
|
462
|
-
Served asset /application.scss.css - 304 Not Modified (0ms)
|
463
|
-
|
464
|
-
|
465
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:33:43 -0430
|
466
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
467
|
-
|
468
|
-
|
469
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:43 -0430
|
470
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
471
|
-
|
472
|
-
|
473
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:43 -0430
|
474
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
475
|
-
|
476
|
-
|
477
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:43 -0430
|
478
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (0ms)
|
479
|
-
|
480
|
-
|
481
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:43 -0430
|
482
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (0ms)
|
483
|
-
|
484
|
-
|
485
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:43 -0430
|
486
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (0ms)
|
487
|
-
|
488
|
-
|
489
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:43 -0430
|
490
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (0ms)
|
491
|
-
|
492
|
-
|
493
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:43 -0430
|
494
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
495
|
-
|
496
|
-
|
497
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:33:44 -0430
|
498
|
-
Processing by ConfirmsController#index as HTML
|
499
|
-
Rendered confirms/index.html.erb within layouts/application (0.6ms)
|
500
|
-
Completed 200 OK in 4.8ms (Views: 4.7ms)
|
501
|
-
|
502
|
-
|
503
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:33:44 -0430
|
504
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
505
|
-
|
506
|
-
|
507
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:33:44 -0430
|
508
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (0ms)
|
509
|
-
|
510
|
-
|
511
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:44 -0430
|
512
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
513
|
-
|
514
|
-
|
515
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:33:44 -0430
|
516
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (0ms)
|
517
|
-
|
518
|
-
|
519
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:33:44 -0430
|
520
|
-
Served asset /application.scss.css - 304 Not Modified (0ms)
|
521
|
-
|
522
|
-
|
523
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:44 -0430
|
524
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
525
|
-
|
526
|
-
|
527
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:44 -0430
|
528
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (0ms)
|
529
|
-
|
530
|
-
|
531
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:44 -0430
|
532
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (0ms)
|
533
|
-
|
534
|
-
|
535
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:44 -0430
|
536
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (0ms)
|
537
|
-
|
538
|
-
|
539
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:44 -0430
|
540
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (0ms)
|
541
|
-
|
542
|
-
|
543
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:33:44 -0430
|
544
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
545
|
-
|
546
|
-
|
547
|
-
Started DELETE "/delete_cow" for 127.0.0.1 at 2014-10-15 17:34:24 -0430
|
548
|
-
Processing by ConfirmsController#delete_cow as JS
|
549
|
-
Rendered confirms/delete_cow.js.erb (0.4ms)
|
550
|
-
Completed 200 OK in 3.3ms (Views: 2.4ms)
|
551
|
-
|
552
|
-
|
553
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:34:27 -0430
|
554
|
-
Processing by ConfirmsController#index as HTML
|
555
|
-
Rendered confirms/index.html.erb within layouts/application (1.0ms)
|
556
|
-
Completed 200 OK in 6.0ms (Views: 5.9ms)
|
557
|
-
|
558
|
-
|
559
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:34:27 -0430
|
560
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (0ms)
|
561
|
-
|
562
|
-
|
563
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:34:27 -0430
|
564
|
-
Served asset /application.scss.css - 304 Not Modified (0ms)
|
565
|
-
|
566
|
-
|
567
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:34:27 -0430
|
568
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (0ms)
|
569
|
-
|
570
|
-
|
571
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:34:27 -0430
|
572
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
573
|
-
|
574
|
-
|
575
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:34:27 -0430
|
576
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
577
|
-
|
578
|
-
|
579
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:34:27 -0430
|
580
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
581
|
-
|
582
|
-
|
583
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:34:27 -0430
|
584
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (0ms)
|
585
|
-
|
586
|
-
|
587
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:34:27 -0430
|
588
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (0ms)
|
589
|
-
|
590
|
-
|
591
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:34:27 -0430
|
592
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
593
|
-
|
594
|
-
|
595
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:34:27 -0430
|
596
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (0ms)
|
597
|
-
|
598
|
-
|
599
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:34:27 -0430
|
600
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (0ms)
|
601
|
-
|
602
|
-
|
603
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:35:03 -0430
|
604
|
-
Processing by ConfirmsController#index as HTML
|
605
|
-
Rendered confirms/index.html.erb within layouts/application (0.7ms)
|
606
|
-
Completed 200 OK in 6.7ms (Views: 6.6ms)
|
607
|
-
|
608
|
-
|
609
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:35:04 -0430
|
610
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (0ms)
|
611
|
-
|
612
|
-
|
613
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:35:04 -0430
|
614
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (0ms)
|
615
|
-
|
616
|
-
|
617
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:35:04 -0430
|
618
|
-
Served asset /application.scss.css - 304 Not Modified (0ms)
|
619
|
-
|
620
|
-
|
621
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:35:04 -0430
|
622
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
623
|
-
|
624
|
-
|
625
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:35:04 -0430
|
626
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (0ms)
|
627
|
-
|
628
|
-
|
629
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:35:04 -0430
|
630
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
631
|
-
|
632
|
-
|
633
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:35:04 -0430
|
634
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
635
|
-
|
636
|
-
|
637
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:35:04 -0430
|
638
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (0ms)
|
639
|
-
|
640
|
-
|
641
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:35:04 -0430
|
642
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
643
|
-
|
644
|
-
|
645
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:35:04 -0430
|
646
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (0ms)
|
647
|
-
|
648
|
-
|
649
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:35:04 -0430
|
650
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (0ms)
|
651
|
-
|
652
|
-
|
653
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:36:57 -0430
|
654
|
-
Processing by ConfirmsController#index as HTML
|
655
|
-
Rendered confirms/index.html.erb within layouts/application (2.0ms)
|
656
|
-
Completed 200 OK in 29.3ms (Views: 28.9ms)
|
657
|
-
|
658
|
-
|
659
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:36:57 -0430
|
660
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (5ms)
|
661
|
-
|
662
|
-
|
663
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:36:57 -0430
|
664
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (15ms)
|
665
|
-
|
666
|
-
|
667
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:36:57 -0430
|
668
|
-
Served asset /jquery_ujs.js - 304 Not Modified (3ms)
|
669
|
-
|
670
|
-
|
671
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:36:57 -0430
|
672
|
-
Served asset /jquery.js - 304 Not Modified (3ms)
|
673
|
-
|
674
|
-
|
675
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:36:57 -0430
|
676
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (14ms)
|
677
|
-
|
678
|
-
|
679
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:36:57 -0430
|
680
|
-
Served asset /application.css - 304 Not Modified (9ms)
|
681
|
-
|
682
|
-
|
683
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:36:57 -0430
|
684
|
-
Served asset /application.scss.css - 304 Not Modified (6ms)
|
685
|
-
|
686
|
-
|
687
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:36:57 -0430
|
688
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (2ms)
|
689
|
-
|
690
|
-
|
691
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:36:57 -0430
|
692
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (5ms)
|
693
|
-
|
694
|
-
|
695
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:36:57 -0430
|
696
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (4ms)
|
697
|
-
|
698
|
-
|
699
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:36:57 -0430
|
700
|
-
Served asset /application.js - 304 Not Modified (7ms)
|
701
|
-
|
702
|
-
|
703
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:37:00 -0430
|
704
|
-
Processing by ConfirmsController#index as HTML
|
705
|
-
Rendered confirms/index.html.erb within layouts/application (0.8ms)
|
706
|
-
Completed 200 OK in 5.3ms (Views: 5.2ms)
|
707
|
-
|
708
|
-
|
709
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:37:00 -0430
|
710
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (0ms)
|
711
|
-
|
712
|
-
|
713
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:37:00 -0430
|
714
|
-
Served asset /application.scss.css - 304 Not Modified (0ms)
|
715
|
-
|
716
|
-
|
717
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:37:00 -0430
|
718
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (0ms)
|
719
|
-
|
720
|
-
|
721
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:37:00 -0430
|
722
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
723
|
-
|
724
|
-
|
725
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:37:00 -0430
|
726
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
727
|
-
|
728
|
-
|
729
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:37:00 -0430
|
730
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
731
|
-
|
732
|
-
|
733
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:37:00 -0430
|
734
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (0ms)
|
735
|
-
|
736
|
-
|
737
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:37:00 -0430
|
738
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (0ms)
|
739
|
-
|
740
|
-
|
741
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:37:00 -0430
|
742
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (0ms)
|
743
|
-
|
744
|
-
|
745
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:37:00 -0430
|
746
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (0ms)
|
747
|
-
|
748
|
-
|
749
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:37:00 -0430
|
750
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
751
|
-
|
752
|
-
|
753
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:37:17 -0430
|
754
|
-
Processing by ConfirmsController#index as HTML
|
755
|
-
Rendered confirms/index.html.erb within layouts/application (2.0ms)
|
756
|
-
Completed 200 OK in 36.4ms (Views: 36.0ms)
|
757
|
-
|
758
|
-
|
759
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:37:17 -0430
|
760
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (4ms)
|
761
|
-
|
762
|
-
|
763
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:37:17 -0430
|
764
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (12ms)
|
765
|
-
|
766
|
-
|
767
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:37:17 -0430
|
768
|
-
Served asset /application.scss.css - 304 Not Modified (6ms)
|
769
|
-
|
770
|
-
|
771
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:37:17 -0430
|
772
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (4ms)
|
773
|
-
|
774
|
-
|
775
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:37:17 -0430
|
776
|
-
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
777
|
-
|
778
|
-
|
779
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:37:17 -0430
|
780
|
-
Served asset /application.css - 304 Not Modified (9ms)
|
781
|
-
|
782
|
-
|
783
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:37:17 -0430
|
784
|
-
Served asset /jquery.js - 304 Not Modified (9ms)
|
785
|
-
|
786
|
-
|
787
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:37:17 -0430
|
788
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (2ms)
|
789
|
-
|
790
|
-
|
791
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:37:17 -0430
|
792
|
-
Served asset /application.js - 304 Not Modified (11ms)
|
793
|
-
|
794
|
-
|
795
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:37:17 -0430
|
796
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (4ms)
|
797
|
-
|
798
|
-
|
799
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:37:17 -0430
|
800
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (4ms)
|
801
|
-
|
802
|
-
|
803
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:38:11 -0430
|
804
|
-
Processing by ConfirmsController#index as HTML
|
805
|
-
Rendered confirms/index.html.erb within layouts/application (1.1ms)
|
806
|
-
Completed 200 OK in 6.5ms (Views: 6.3ms)
|
807
|
-
|
808
|
-
|
809
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:11 -0430
|
810
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (0ms)
|
811
|
-
|
812
|
-
|
813
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:11 -0430
|
814
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (0ms)
|
815
|
-
|
816
|
-
|
817
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:11 -0430
|
818
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
819
|
-
|
820
|
-
|
821
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:11 -0430
|
822
|
-
Served asset /application.scss.css - 304 Not Modified (0ms)
|
823
|
-
|
824
|
-
|
825
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:11 -0430
|
826
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
827
|
-
|
828
|
-
|
829
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:11 -0430
|
830
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
831
|
-
|
832
|
-
|
833
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:11 -0430
|
834
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (0ms)
|
835
|
-
|
836
|
-
|
837
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:11 -0430
|
838
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (0ms)
|
839
|
-
|
840
|
-
|
841
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:11 -0430
|
842
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (0ms)
|
843
|
-
|
844
|
-
|
845
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:11 -0430
|
846
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (0ms)
|
847
|
-
|
848
|
-
|
849
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:11 -0430
|
850
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
851
|
-
|
852
|
-
|
853
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:38:14 -0430
|
854
|
-
Processing by ConfirmsController#index as HTML
|
855
|
-
Rendered confirms/index.html.erb within layouts/application (0.6ms)
|
856
|
-
Completed 200 OK in 5.3ms (Views: 5.2ms)
|
857
|
-
|
858
|
-
|
859
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:14 -0430
|
860
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (0ms)
|
861
|
-
|
862
|
-
|
863
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:14 -0430
|
864
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
865
|
-
|
866
|
-
|
867
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:14 -0430
|
868
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
869
|
-
|
870
|
-
|
871
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:14 -0430
|
872
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
873
|
-
|
874
|
-
|
875
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:14 -0430
|
876
|
-
Served asset /application.scss.css - 304 Not Modified (0ms)
|
877
|
-
|
878
|
-
|
879
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:14 -0430
|
880
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (0ms)
|
881
|
-
|
882
|
-
|
883
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:14 -0430
|
884
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (0ms)
|
885
|
-
|
886
|
-
|
887
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:14 -0430
|
888
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (0ms)
|
889
|
-
|
890
|
-
|
891
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:14 -0430
|
892
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (0ms)
|
893
|
-
|
894
|
-
|
895
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:14 -0430
|
896
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (0ms)
|
897
|
-
|
898
|
-
|
899
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:14 -0430
|
900
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
901
|
-
|
902
|
-
|
903
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:38:19 -0430
|
904
|
-
Processing by ConfirmsController#index as HTML
|
905
|
-
Rendered confirms/index.html.erb within layouts/application (28.9ms)
|
906
|
-
Completed 200 OK in 33.7ms (Views: 33.6ms)
|
907
|
-
|
908
|
-
|
909
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:20 -0430
|
910
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (0ms)
|
911
|
-
|
912
|
-
|
913
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:20 -0430
|
914
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (0ms)
|
915
|
-
|
916
|
-
|
917
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:20 -0430
|
918
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
919
|
-
|
920
|
-
|
921
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:20 -0430
|
922
|
-
Served asset /application.scss.css - 304 Not Modified (0ms)
|
923
|
-
|
924
|
-
|
925
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:20 -0430
|
926
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
927
|
-
|
928
|
-
|
929
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:20 -0430
|
930
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (0ms)
|
931
|
-
|
932
|
-
|
933
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:20 -0430
|
934
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
935
|
-
|
936
|
-
|
937
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:20 -0430
|
938
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (0ms)
|
939
|
-
|
940
|
-
|
941
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:20 -0430
|
942
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (0ms)
|
943
|
-
|
944
|
-
|
945
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:20 -0430
|
946
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (0ms)
|
947
|
-
|
948
|
-
|
949
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:20 -0430
|
950
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
951
|
-
|
952
|
-
|
953
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:38:22 -0430
|
954
|
-
Processing by ConfirmsController#index as HTML
|
955
|
-
Rendered confirms/index.html.erb within layouts/application (0.7ms)
|
956
|
-
Completed 200 OK in 5.0ms (Views: 5.0ms)
|
957
|
-
|
958
|
-
|
959
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:22 -0430
|
960
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (0ms)
|
961
|
-
|
962
|
-
|
963
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:22 -0430
|
964
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (0ms)
|
965
|
-
|
966
|
-
|
967
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:22 -0430
|
968
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
969
|
-
|
970
|
-
|
971
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:22 -0430
|
972
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
973
|
-
|
974
|
-
|
975
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:22 -0430
|
976
|
-
Served asset /application.scss.css - 304 Not Modified (0ms)
|
977
|
-
|
978
|
-
|
979
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:22 -0430
|
980
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
981
|
-
|
982
|
-
|
983
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:22 -0430
|
984
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (0ms)
|
985
|
-
|
986
|
-
|
987
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:22 -0430
|
988
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (0ms)
|
989
|
-
|
990
|
-
|
991
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:22 -0430
|
992
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (0ms)
|
993
|
-
|
994
|
-
|
995
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:22 -0430
|
996
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (0ms)
|
997
|
-
|
998
|
-
|
999
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:22 -0430
|
1000
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
1001
|
-
|
1002
|
-
|
1003
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:38:33 -0430
|
1004
|
-
Processing by ConfirmsController#index as HTML
|
1005
|
-
Rendered confirms/index.html.erb within layouts/application (1.9ms)
|
1006
|
-
Completed 200 OK in 23.3ms (Views: 23.0ms)
|
1007
|
-
|
1008
|
-
|
1009
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:33 -0430
|
1010
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (3ms)
|
1011
|
-
|
1012
|
-
|
1013
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:33 -0430
|
1014
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (7ms)
|
1015
|
-
|
1016
|
-
|
1017
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:33 -0430
|
1018
|
-
Served asset /jquery.js - 304 Not Modified (9ms)
|
1019
|
-
|
1020
|
-
|
1021
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:33 -0430
|
1022
|
-
Served asset /application.css - 304 Not Modified (10ms)
|
1023
|
-
|
1024
|
-
|
1025
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:33 -0430
|
1026
|
-
Served asset /application.scss.css - 304 Not Modified (7ms)
|
1027
|
-
|
1028
|
-
|
1029
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:33 -0430
|
1030
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (3ms)
|
1031
|
-
|
1032
|
-
|
1033
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:33 -0430
|
1034
|
-
Served asset /jquery_ujs.js - 304 Not Modified (3ms)
|
1035
|
-
|
1036
|
-
|
1037
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:33 -0430
|
1038
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (10ms)
|
1039
|
-
|
1040
|
-
|
1041
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:33 -0430
|
1042
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (4ms)
|
1043
|
-
|
1044
|
-
|
1045
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:33 -0430
|
1046
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (2ms)
|
1047
|
-
|
1048
|
-
|
1049
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:33 -0430
|
1050
|
-
Served asset /application.js - 304 Not Modified (8ms)
|
1051
|
-
|
1052
|
-
|
1053
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:38:37 -0430
|
1054
|
-
Processing by ConfirmsController#index as HTML
|
1055
|
-
Rendered confirms/index.html.erb within layouts/application (0.9ms)
|
1056
|
-
Completed 200 OK in 5.1ms (Views: 5.0ms)
|
1057
|
-
|
1058
|
-
|
1059
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:37 -0430
|
1060
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (0ms)
|
1061
|
-
|
1062
|
-
|
1063
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:37 -0430
|
1064
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (0ms)
|
1065
|
-
|
1066
|
-
|
1067
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:37 -0430
|
1068
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
1069
|
-
|
1070
|
-
|
1071
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:37 -0430
|
1072
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1073
|
-
|
1074
|
-
|
1075
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:37 -0430
|
1076
|
-
Served asset /application.scss.css - 304 Not Modified (0ms)
|
1077
|
-
|
1078
|
-
|
1079
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:37 -0430
|
1080
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1081
|
-
|
1082
|
-
|
1083
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:37 -0430
|
1084
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (0ms)
|
1085
|
-
|
1086
|
-
|
1087
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:37 -0430
|
1088
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (0ms)
|
1089
|
-
|
1090
|
-
|
1091
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:37 -0430
|
1092
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (0ms)
|
1093
|
-
|
1094
|
-
|
1095
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:37 -0430
|
1096
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
1097
|
-
|
1098
|
-
|
1099
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:37 -0430
|
1100
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (0ms)
|
1101
|
-
|
1102
|
-
|
1103
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:38:51 -0430
|
1104
|
-
Processing by ConfirmsController#index as HTML
|
1105
|
-
Rendered confirms/index.html.erb within layouts/application (2.3ms)
|
1106
|
-
Completed 200 OK in 24.8ms (Views: 24.4ms)
|
1107
|
-
|
1108
|
-
|
1109
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:51 -0430
|
1110
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (4ms)
|
1111
|
-
|
1112
|
-
|
1113
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:51 -0430
|
1114
|
-
Served asset /application.scss.css - 304 Not Modified (14ms)
|
1115
|
-
|
1116
|
-
|
1117
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:51 -0430
|
1118
|
-
Served asset /application.css - 304 Not Modified (9ms)
|
1119
|
-
|
1120
|
-
|
1121
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:51 -0430
|
1122
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (5ms)
|
1123
|
-
|
1124
|
-
|
1125
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:51 -0430
|
1126
|
-
Served asset /jquery_ujs.js - 304 Not Modified (4ms)
|
1127
|
-
|
1128
|
-
|
1129
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:51 -0430
|
1130
|
-
Served asset /jquery.js - 304 Not Modified (4ms)
|
1131
|
-
|
1132
|
-
|
1133
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:51 -0430
|
1134
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (4ms)
|
1135
|
-
|
1136
|
-
|
1137
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:51 -0430
|
1138
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (2ms)
|
1139
|
-
|
1140
|
-
|
1141
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:51 -0430
|
1142
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (4ms)
|
1143
|
-
|
1144
|
-
|
1145
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:51 -0430
|
1146
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (4ms)
|
1147
|
-
|
1148
|
-
|
1149
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:51 -0430
|
1150
|
-
Served asset /application.js - 304 Not Modified (7ms)
|
1151
|
-
|
1152
|
-
|
1153
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:38:55 -0430
|
1154
|
-
Processing by ConfirmsController#index as HTML
|
1155
|
-
Rendered confirms/index.html.erb within layouts/application (0.7ms)
|
1156
|
-
Completed 200 OK in 5.1ms (Views: 5.0ms)
|
1157
|
-
|
1158
|
-
|
1159
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:55 -0430
|
1160
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (0ms)
|
1161
|
-
|
1162
|
-
|
1163
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:55 -0430
|
1164
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (0ms)
|
1165
|
-
|
1166
|
-
|
1167
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:55 -0430
|
1168
|
-
Served asset /application.scss.css - 304 Not Modified (0ms)
|
1169
|
-
|
1170
|
-
|
1171
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:55 -0430
|
1172
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1173
|
-
|
1174
|
-
|
1175
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:55 -0430
|
1176
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1177
|
-
|
1178
|
-
|
1179
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:55 -0430
|
1180
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (0ms)
|
1181
|
-
|
1182
|
-
|
1183
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:38:55 -0430
|
1184
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
1185
|
-
|
1186
|
-
|
1187
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:55 -0430
|
1188
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (0ms)
|
1189
|
-
|
1190
|
-
|
1191
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:55 -0430
|
1192
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (0ms)
|
1193
|
-
|
1194
|
-
|
1195
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:55 -0430
|
1196
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (0ms)
|
1197
|
-
|
1198
|
-
|
1199
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:38:55 -0430
|
1200
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
1201
|
-
|
1202
|
-
|
1203
|
-
Started GET "/confirms_page" for 127.0.0.1 at 2014-10-15 17:39:52 -0430
|
1204
|
-
Processing by ConfirmsController#index as HTML
|
1205
|
-
Rendered confirms/index.html.erb within layouts/application (3.9ms)
|
1206
|
-
Completed 200 OK in 28.1ms (Views: 27.9ms)
|
1207
|
-
|
1208
|
-
|
1209
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:39:52 -0430
|
1210
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (15ms)
|
1211
|
-
|
1212
|
-
|
1213
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:39:52 -0430
|
1214
|
-
Served asset /application.scss.css - 304 Not Modified (6ms)
|
1215
|
-
|
1216
|
-
|
1217
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:39:52 -0430
|
1218
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (4ms)
|
1219
|
-
|
1220
|
-
|
1221
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:39:52 -0430
|
1222
|
-
Served asset /application.css - 304 Not Modified (14ms)
|
1223
|
-
|
1224
|
-
|
1225
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:39:52 -0430
|
1226
|
-
Served asset /jquery.js - 304 Not Modified (5ms)
|
1227
|
-
|
1228
|
-
|
1229
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:39:52 -0430
|
1230
|
-
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
1231
|
-
|
1232
|
-
|
1233
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:39:52 -0430
|
1234
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (4ms)
|
1235
|
-
|
1236
|
-
|
1237
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:39:52 -0430
|
1238
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (2ms)
|
1239
|
-
|
1240
|
-
|
1241
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:39:52 -0430
|
1242
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (4ms)
|
1243
|
-
|
1244
|
-
|
1245
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:39:52 -0430
|
1246
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (4ms)
|
1247
|
-
|
1248
|
-
|
1249
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:39:52 -0430
|
1250
|
-
Served asset /application.js - 304 Not Modified (8ms)
|
1251
|
-
|
1252
|
-
|
1253
|
-
Started GET "/get_cow" for 127.0.0.1 at 2014-10-15 17:39:57 -0430
|
1254
|
-
Processing by ConfirmsController#get_cow as HTML
|
1255
|
-
Rendered confirms/get_cow.html.erb within layouts/application (0.4ms)
|
1256
|
-
Completed 200 OK in 5.0ms (Views: 4.8ms)
|
1257
|
-
|
1258
|
-
|
1259
|
-
Started GET "/assets/sweet-alert/sweet-alert.css?body=1" for 127.0.0.1 at 2014-10-15 17:39:57 -0430
|
1260
|
-
Served asset /sweet-alert/sweet-alert.css - 304 Not Modified (0ms)
|
1261
|
-
|
1262
|
-
|
1263
|
-
Started GET "/assets/sweet-alert/index.css?body=1" for 127.0.0.1 at 2014-10-15 17:39:57 -0430
|
1264
|
-
Served asset /sweet-alert/index.css - 304 Not Modified (0ms)
|
1265
|
-
|
1266
|
-
|
1267
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-15 17:39:57 -0430
|
1268
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
1269
|
-
|
1270
|
-
|
1271
|
-
Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2014-10-15 17:39:57 -0430
|
1272
|
-
Served asset /application.scss.css - 304 Not Modified (0ms)
|
1273
|
-
|
1274
|
-
|
1275
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-15 17:39:57 -0430
|
1276
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1277
|
-
|
1278
|
-
|
1279
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-15 17:39:57 -0430
|
1280
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
1281
|
-
|
1282
|
-
|
1283
|
-
Started GET "/assets/sweet-alert/sweet-alert.js?body=1" for 127.0.0.1 at 2014-10-15 17:39:57 -0430
|
1284
|
-
Served asset /sweet-alert/sweet-alert.js - 304 Not Modified (0ms)
|
1285
|
-
|
1286
|
-
|
1287
|
-
Started GET "/assets/sweet-alert/index.js?body=1" for 127.0.0.1 at 2014-10-15 17:39:57 -0430
|
1288
|
-
Served asset /sweet-alert/index.js - 304 Not Modified (0ms)
|
1289
|
-
|
1290
|
-
|
1291
|
-
Started GET "/assets/sweet-alert/sweet-alert.min.js?body=1" for 127.0.0.1 at 2014-10-15 17:39:57 -0430
|
1292
|
-
Served asset /sweet-alert/sweet-alert.min.js - 304 Not Modified (0ms)
|
1293
|
-
|
1294
|
-
|
1295
|
-
Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2014-10-15 17:39:57 -0430
|
1296
|
-
Served asset /sweet-alert-confirm.js - 304 Not Modified (0ms)
|
1297
|
-
|
1298
|
-
|
1299
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-15 17:39:57 -0430
|
1300
|
-
Served asset /application.js - 304 Not Modified (0ms)
|