sweet-alert-confirm 0.4.1 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 640e76e94b79915734bf8924ea86399c4305c684
4
- data.tar.gz: 374c4740d8c4cb9a942f23fe12c0580bd69b55a8
2
+ SHA256:
3
+ metadata.gz: f2768fd6fa7aaa91e3b6f301689f4836fad4852d0e0976f61c0b90b67c81feec
4
+ data.tar.gz: 6421d1d9299f17209b3e8f18850cee1e88918ceea862b39a6f2e1b9a5907e559
5
5
  SHA512:
6
- metadata.gz: 13c3cd90ffc6e4a8dbaa296ff63a20fa89b7a7d96c453e3e7f278b5aede891dccfc863c6b77ffbfc150b562376d5a835d6160f66bdc75456a5e2bf92cc222320
7
- data.tar.gz: e00ca56dfbc88addd88dc0c0bfd804b980e88ee7c7a311d4fe7d65eb6762ec8f1801685561d45e02ff8913d51268d32e6ee823dde921759ded04b43d99a17f12
6
+ metadata.gz: d274d6c92c6a78c0a79e2c835d2b3ed79334f6bfeeee7738a84fe8e3f87ee5f8d7c9f5b78caacb5d34e7c4f9ddde7ab20c5d7882a39205f5126ed17574a19389
7
+ data.tar.gz: bf0db9f18ae12ca21cc56a996eb15716a6e2d7d388208b14d0eed08688294e18efbeba2b9be4159315ac5bdc3daf72721bfc3d5e2175213a9c33b2e108b09285
data/README.md CHANGED
@@ -19,31 +19,19 @@ Rails >= 3.1
19
19
 
20
20
  ## Usage
21
21
 
22
- Using ```gem 'rails-assets-sweetalert'```
23
-
24
- application.js:
25
-
26
- ```javascript
27
- //= require sweetalert
28
- //= require sweet-alert-confirm
29
- ```
30
- application.css:
31
-
32
- ```css
33
- /*
34
- *= require sweetalert
35
- */
22
+ Add it to your Gemfile:
23
+ ```ruby
24
+ gem 'sweet-alert'
25
+ gem 'sweet-alert-confirm'
36
26
  ```
37
27
 
38
- Using ```gem 'sweet-alert'```
39
-
40
- application.js:
28
+ Add the following to application.js:
41
29
 
42
30
  ```javascript
43
31
  //= require sweet-alert
44
32
  //= require sweet-alert-confirm
45
33
  ```
46
- application.css:
34
+ Add the following to application.css:
47
35
 
48
36
  ```css
49
37
  /*
@@ -57,7 +45,7 @@ application.css:
57
45
  You can pass options in `data:`
58
46
  ```Ruby
59
47
  data: {
60
- confirm: 'Are you ready?'
48
+ :'sweet-alert-confirm: 'Are you ready?'
61
49
  :'confirm-button-text' => 'Im ready',
62
50
  :'cancel-button-text' => 'No way',
63
51
  :'confirm-button-color' => '#66CD00',
@@ -31,6 +31,7 @@ var sweetAlertConfirmConfig = sweetAlertConfirmConfig || {}; // Add default conf
31
31
  'html',
32
32
  'imageUrl',
33
33
  'allowOutsideClick',
34
+ 'customClass',
34
35
  'remote',
35
36
  'method',
36
37
  'function'
@@ -102,11 +103,11 @@ var sweetAlertConfirmConfig = sweetAlertConfirmConfig || {}; // Add default conf
102
103
 
103
104
  return false;
104
105
  }
105
- $(document).on('ready page:load ajaxComplete', function() {
106
+ $(document).on('ready turbolinks:load turbo:load page:update ajaxComplete', function() {
106
107
  $('[data-sweet-alert-confirm]').on('click', sweetAlertConfirm)
107
108
  });
108
109
 
109
- $(document).on('ready page:load', function() {
110
+ $(document).on('ready turbolinks:load turbo:load page:load', function() {
110
111
  //To avoid "Uncaught TypeError: Cannot read property 'querySelector' of null" on turbolinks
111
112
  if (typeof window.sweetAlertInitialize === 'function') {
112
113
  window.sweetAlertInitialize();
@@ -1,3 +1,3 @@
1
1
  module SweetAlertConfirm
2
- VERSION = "0.4.1"
2
+ VERSION = "0.5.0"
3
3
  end
@@ -14,379 +14,3 @@ Connecting to database specified by database.yml
14
14
   (0.1ms) SELECT version FROM "schema_migrations"
15
15
   (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
16
16
  Connecting to database specified by database.yml
17
-
18
-
19
- Started GET "/" for 127.0.0.1 at 2015-11-25 19:02:18 -0430
20
- Processing by ConfirmsController#pre_index as HTML
21
- Rendered confirms/pre_index.html.erb within layouts/application (4.4ms)
22
- Completed 500 Internal Server Error in 63.5ms
23
-
24
- ActionView::Template::Error (couldn't find file 'sweet-alert.css'
25
- (in /Users/moises/proyectos/gems/sweet_rails_confirm/spec/dummy-rails3/app/assets/stylesheets/application.scss.css:13)):
26
- 2: <html>
27
- 3: <head>
28
- 4: <title>Dummy</title>
29
- 5: <%= stylesheet_link_tag "application", :media => "all" %>
30
- 6: <% if ENV['USE_TURBOLINKS'] %>
31
- 7: <%= javascript_include_tag 'application_turbolinks', "data-turbolinks-track" => true %>
32
- 8: <% else %>
33
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3693687185361712893_70322403768740'
34
-
35
-
36
- Rendered /Users/moises/.rvm/gems/ruby-2.1.2/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
37
- Rendered /Users/moises/.rvm/gems/ruby-2.1.2/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
38
- Rendered /Users/moises/.rvm/gems/ruby-2.1.2/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.0ms)
39
-
40
-
41
- Started GET "/" for 127.0.0.1 at 2015-11-25 19:03:15 -0430
42
- Processing by ConfirmsController#pre_index as HTML
43
- Rendered confirms/pre_index.html.erb within layouts/application (0.7ms)
44
- Compiled application.scss.css (3ms) (pid 12757)
45
- Compiled application.css (20ms) (pid 12757)
46
- Compiled sweet-alert-confirm.js (0ms) (pid 12757)
47
- Compiled application.js (50ms) (pid 12757)
48
- Completed 200 OK in 115.9ms (Views: 115.5ms)
49
-
50
-
51
- Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2015-11-25 19:03:15 -0430
52
- Served asset /application.scss.css - 200 OK (14ms)
53
-
54
-
55
- Started GET "/assets/sweetalert.css?body=1" for 127.0.0.1 at 2015-11-25 19:03:15 -0430
56
- Served asset /sweetalert.css - 200 OK (4ms)
57
-
58
-
59
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-25 19:03:15 -0430
60
- Served asset /application.css - 200 OK (8ms)
61
-
62
-
63
- Started GET "/assets/sweetalert/sweetalert.min.js?body=1" for 127.0.0.1 at 2015-11-25 19:03:15 -0430
64
- Served asset /sweetalert/sweetalert.min.js - 200 OK (2ms)
65
-
66
-
67
- Started GET "/assets/sweetalert.js?body=1" for 127.0.0.1 at 2015-11-25 19:03:15 -0430
68
- Served asset /sweetalert.js - 200 OK (3ms)
69
-
70
-
71
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-25 19:03:15 -0430
72
- Served asset /jquery.js - 200 OK (3ms)
73
-
74
-
75
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-25 19:03:15 -0430
76
- Served asset /jquery_ujs.js - 200 OK (2ms)
77
-
78
-
79
- Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2015-11-25 19:03:15 -0430
80
- Served asset /sweet-alert-confirm.js - 200 OK (3ms)
81
-
82
-
83
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-25 19:03:16 -0430
84
- Served asset /application.js - 200 OK (8ms)
85
-
86
-
87
- Started GET "/confirms_page" for 127.0.0.1 at 2015-11-25 19:03:18 -0430
88
- Processing by ConfirmsController#index as HTML
89
- Rendered confirms/index.html.erb within layouts/application (8.5ms)
90
- Completed 200 OK in 15.1ms (Views: 14.4ms)
91
-
92
-
93
- Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2015-11-25 19:03:18 -0430
94
- Served asset /application.scss.css - 304 Not Modified (0ms)
95
-
96
-
97
- Started DELETE "/delete_cow" for 127.0.0.1 at 2015-11-25 19:04:09 -0430
98
- Processing by ConfirmsController#delete_cow as HTML
99
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"8XyXI0D9N9QBDATgrHEoE07NOdvn+TUaudkxna9LgiA="}
100
- Rendered confirms/delete_cow.html.erb within layouts/application (1.6ms)
101
- Completed 200 OK in 51.0ms (Views: 49.8ms)
102
-
103
-
104
- Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2015-11-25 19:04:09 -0430
105
- Served asset /application.scss.css - 304 Not Modified (5ms)
106
-
107
-
108
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-25 19:04:09 -0430
109
- Served asset /application.js - 304 Not Modified (12ms)
110
-
111
-
112
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-25 19:04:09 -0430
113
- Served asset /application.css - 304 Not Modified (6ms)
114
-
115
-
116
- Started GET "/confirms_page" for 127.0.0.1 at 2015-11-25 19:04:51 -0430
117
- Processing by ConfirmsController#index as HTML
118
- Rendered confirms/index.html.erb within layouts/application (8.8ms)
119
- Completed 200 OK in 17.1ms (Views: 16.3ms)
120
-
121
-
122
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-25 19:04:51 -0430
123
- Served asset /application.css - 304 Not Modified (0ms)
124
-
125
-
126
- Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2015-11-25 19:04:51 -0430
127
- Served asset /application.scss.css - 304 Not Modified (0ms)
128
-
129
-
130
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-25 19:04:51 -0430
131
- Served asset /jquery_ujs.js - 304 Not Modified (7ms)
132
-
133
-
134
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-25 19:04:51 -0430
135
- Served asset /jquery.js - 304 Not Modified (9ms)
136
-
137
-
138
- Started GET "/assets/sweetalert/sweetalert.min.js?body=1" for 127.0.0.1 at 2015-11-25 19:04:51 -0430
139
- Served asset /sweetalert/sweetalert.min.js - 304 Not Modified (4ms)
140
-
141
-
142
- Started GET "/assets/sweetalert.css?body=1" for 127.0.0.1 at 2015-11-25 19:04:51 -0430
143
- Served asset /sweetalert.css - 304 Not Modified (4ms)
144
-
145
-
146
- Started GET "/assets/sweetalert.js?body=1" for 127.0.0.1 at 2015-11-25 19:04:51 -0430
147
- Served asset /sweetalert.js - 304 Not Modified (4ms)
148
-
149
-
150
- Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2015-11-25 19:04:51 -0430
151
- Served asset /sweet-alert-confirm.js - 304 Not Modified (3ms)
152
-
153
-
154
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-25 19:04:51 -0430
155
- Served asset /application.js - 304 Not Modified (0ms)
156
-
157
-
158
- Started GET "/confirms_page" for 127.0.0.1 at 2015-11-25 19:10:03 -0430
159
- Processing by ConfirmsController#index as HTML
160
- Rendered confirms/index.html.erb within layouts/application (6.5ms)
161
- Compiled sweet-alert-confirm.js (0ms) (pid 12883)
162
- Compiled application.js (9ms) (pid 12883)
163
- Completed 200 OK in 121.2ms (Views: 121.0ms)
164
-
165
-
166
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-25 19:10:03 -0430
167
- Served asset /application.css - 304 Not Modified (0ms)
168
-
169
-
170
- Started GET "/assets/sweetalert.css?body=1" for 127.0.0.1 at 2015-11-25 19:10:03 -0430
171
- Served asset /sweetalert.css - 304 Not Modified (0ms)
172
-
173
-
174
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-25 19:10:03 -0430
175
- Served asset /jquery.js - 304 Not Modified (0ms)
176
-
177
-
178
- Started GET "/assets/sweetalert/sweetalert.min.js?body=1" for 127.0.0.1 at 2015-11-25 19:10:03 -0430
179
- Served asset /sweetalert/sweetalert.min.js - 304 Not Modified (0ms)
180
-
181
-
182
- Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2015-11-25 19:10:03 -0430
183
- Served asset /application.scss.css - 304 Not Modified (0ms)
184
-
185
-
186
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-25 19:10:03 -0430
187
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
188
-
189
-
190
- Started GET "/assets/sweetalert.js?body=1" for 127.0.0.1 at 2015-11-25 19:10:03 -0430
191
- Served asset /sweetalert.js - 304 Not Modified (0ms)
192
-
193
-
194
- Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2015-11-25 19:10:03 -0430
195
- Served asset /sweet-alert-confirm.js - 200 OK (3ms)
196
-
197
-
198
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-25 19:10:03 -0430
199
- Served asset /application.js - 304 Not Modified (7ms)
200
-
201
-
202
- Started GET "/confirms_page" for 127.0.0.1 at 2015-11-25 19:10:33 -0430
203
- Processing by ConfirmsController#index as HTML
204
- Rendered confirms/index.html.erb within layouts/application (4.6ms)
205
- Compiled sweet-alert-confirm.js (0ms) (pid 12883)
206
- Compiled application.js (9ms) (pid 12883)
207
- Completed 200 OK in 187.8ms (Views: 187.5ms)
208
-
209
-
210
- Started GET "/assets/sweetalert.css?body=1" for 127.0.0.1 at 2015-11-25 19:10:34 -0430
211
- Served asset /sweetalert.css - 304 Not Modified (0ms)
212
-
213
-
214
- Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2015-11-25 19:10:34 -0430
215
- Served asset /application.scss.css - 304 Not Modified (0ms)
216
-
217
-
218
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-25 19:10:34 -0430
219
- Served asset /application.css - 304 Not Modified (0ms)
220
-
221
-
222
- Started GET "/assets/sweetalert/sweetalert.min.js?body=1" for 127.0.0.1 at 2015-11-25 19:10:34 -0430
223
- Served asset /sweetalert/sweetalert.min.js - 304 Not Modified (0ms)
224
-
225
-
226
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-25 19:10:34 -0430
227
- Served asset /jquery.js - 304 Not Modified (0ms)
228
-
229
-
230
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-25 19:10:34 -0430
231
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
232
-
233
-
234
- Started GET "/assets/sweetalert.js?body=1" for 127.0.0.1 at 2015-11-25 19:10:34 -0430
235
- Served asset /sweetalert.js - 304 Not Modified (0ms)
236
-
237
-
238
- Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2015-11-25 19:10:34 -0430
239
- Served asset /sweet-alert-confirm.js - 200 OK (4ms)
240
-
241
-
242
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-25 19:10:34 -0430
243
- Served asset /application.js - 304 Not Modified (11ms)
244
-
245
-
246
- Started GET "/confirms_page" for 127.0.0.1 at 2015-11-25 19:10:52 -0430
247
- Processing by ConfirmsController#index as HTML
248
- Rendered confirms/index.html.erb within layouts/application (2.7ms)
249
- Compiled sweet-alert-confirm.js (0ms) (pid 12883)
250
- Compiled application.js (6ms) (pid 12883)
251
- Completed 200 OK in 52.5ms (Views: 52.0ms)
252
-
253
-
254
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-25 19:10:52 -0430
255
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
256
-
257
-
258
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-25 19:10:52 -0430
259
- Served asset /jquery.js - 304 Not Modified (0ms)
260
-
261
-
262
- Started GET "/assets/sweetalert/sweetalert.min.js?body=1" for 127.0.0.1 at 2015-11-25 19:10:52 -0430
263
- Served asset /sweetalert/sweetalert.min.js - 304 Not Modified (0ms)
264
-
265
-
266
- Started GET "/assets/sweetalert.css?body=1" for 127.0.0.1 at 2015-11-25 19:10:52 -0430
267
- Served asset /sweetalert.css - 304 Not Modified (0ms)
268
-
269
-
270
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-25 19:10:52 -0430
271
- Served asset /application.css - 304 Not Modified (0ms)
272
-
273
-
274
- Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2015-11-25 19:10:52 -0430
275
- Served asset /application.scss.css - 304 Not Modified (0ms)
276
-
277
-
278
- Started GET "/assets/sweetalert.js?body=1" for 127.0.0.1 at 2015-11-25 19:10:52 -0430
279
- Served asset /sweetalert.js - 304 Not Modified (0ms)
280
-
281
-
282
- Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2015-11-25 19:10:53 -0430
283
- Served asset /sweet-alert-confirm.js - 200 OK (7ms)
284
-
285
-
286
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-25 19:10:53 -0430
287
- Served asset /application.js - 304 Not Modified (9ms)
288
-
289
-
290
- Started GET "/confirms_page" for 127.0.0.1 at 2015-11-25 19:23:10 -0430
291
- Processing by ConfirmsController#index as HTML
292
- Rendered confirms/index.html.erb within layouts/application (6.9ms)
293
- Warning. Error encountered while saving cache /Users/moises/proyectos/gems/sweet_rails_confirm/spec/dummy-rails3/tmp/cache/sass/82d4e0b49cdf94a71a3144cbf991c58a689e0cf6/sweetalert.scssc: can't dump anonymous class #<Class:0x007fc2ba254458>
294
-
295
- Warning. Error encountered while saving cache /Users/moises/proyectos/gems/sweet_rails_confirm/spec/dummy-rails3/tmp/cache/sass/90d704e96c1b7b508738a6a083df66783a0fa02b/sweetalert.scssc: can't dump anonymous class #<Class:0x007fc2ba254458>
296
-
297
- Compiled sweetalert.css (192ms) (pid 14128)
298
- Compiled application.scss.css (4ms) (pid 14128)
299
- Compiled application.css (217ms) (pid 14128)
300
- Compiled jquery.js (5ms) (pid 14128)
301
- Compiled jquery_ujs.js (1ms) (pid 14128)
302
- Compiled sweetalert/sweetalert.min.js (0ms) (pid 14128)
303
- Compiled sweetalert.js (7ms) (pid 14128)
304
- Compiled sweet-alert-confirm.js (0ms) (pid 14128)
305
- Compiled application.js (61ms) (pid 14128)
306
- Completed 200 OK in 362.7ms (Views: 362.1ms)
307
-
308
-
309
- Started GET "/assets/sweetalert.css?body=1" for 127.0.0.1 at 2015-11-25 19:23:11 -0430
310
- Served asset /sweetalert.css - 304 Not Modified (7ms)
311
-
312
-
313
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-25 19:23:11 -0430
314
- Served asset /application.css - 304 Not Modified (12ms)
315
-
316
-
317
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-25 19:23:11 -0430
318
- Served asset /jquery.js - 304 Not Modified (8ms)
319
-
320
-
321
- Started GET "/assets/sweetalert/sweetalert.min.js?body=1" for 127.0.0.1 at 2015-11-25 19:23:11 -0430
322
- Served asset /sweetalert/sweetalert.min.js - 304 Not Modified (3ms)
323
-
324
-
325
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-25 19:23:11 -0430
326
- Served asset /jquery_ujs.js - 304 Not Modified (2ms)
327
-
328
-
329
- Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2015-11-25 19:23:11 -0430
330
- Served asset /application.scss.css - 304 Not Modified (4ms)
331
-
332
-
333
- Started GET "/assets/sweetalert.js?body=1" for 127.0.0.1 at 2015-11-25 19:23:11 -0430
334
- Served asset /sweetalert.js - 304 Not Modified (7ms)
335
-
336
-
337
- Started GET "/assets/sweet-alert-confirm.js?body=1" for 127.0.0.1 at 2015-11-25 19:23:11 -0430
338
- Served asset /sweet-alert-confirm.js - 200 OK (3ms)
339
-
340
-
341
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-25 19:23:11 -0430
342
- Served asset /application.js - 304 Not Modified (6ms)
343
-
344
-
345
- Started GET "/get_cow" for 127.0.0.1 at 2015-11-25 19:23:21 -0430
346
- Processing by ConfirmsController#get_cow as HTML
347
- Rendered confirms/get_cow.html.erb within layouts/application (0.6ms)
348
- Completed 200 OK in 11.2ms (Views: 10.3ms)
349
-
350
-
351
- Started GET "/assets/sweetalert.css?body=1" for 127.0.0.1 at 2015-11-25 19:23:22 -0430
352
- Served asset /sweetalert.css - 304 Not Modified (0ms)
353
-
354
-
355
- Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2015-11-25 19:23:22 -0430
356
- Served asset /application.scss.css - 304 Not Modified (0ms)
357
-
358
-
359
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-25 19:23:22 -0430
360
- Served asset /application.css - 304 Not Modified (0ms)
361
-
362
-
363
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-25 19:23:22 -0430
364
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
365
-
366
-
367
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-25 19:23:22 -0430
368
- Served asset /jquery.js - 304 Not Modified (0ms)
369
-
370
-
371
- Started GET "/assets/sweetalert/sweetalert.min.js?body=1" for 127.0.0.1 at 2015-11-25 19:23:22 -0430
372
- Served asset /sweetalert/sweetalert.min.js - 304 Not Modified (0ms)
373
-
374
-
375
- Started GET "/assets/sweetalert.js?body=1" for 127.0.0.1 at 2015-11-25 19:23:22 -0430
376
- Served asset /sweetalert.js - 304 Not Modified (0ms)
377
-
378
-
379
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-25 19:23:22 -0430
380
- Served asset /application.js - 304 Not Modified (0ms)
381
-
382
-
383
- Started GET "/assets/sweetalert.css?body=1" for 127.0.0.1 at 2015-11-25 19:24:49 -0430
384
- Served asset /sweetalert.css - 304 Not Modified (0ms)
385
-
386
-
387
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-25 19:24:49 -0430
388
- Served asset /application.css - 304 Not Modified (0ms)
389
-
390
-
391
- Started GET "/assets/application.scss.css?body=1" for 127.0.0.1 at 2015-11-25 19:24:49 -0430
392
- Served asset /application.scss.css - 304 Not Modified (0ms)