bootstrap_validator_rails 0.0.5

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.
Files changed (106) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +32 -0
  4. data/lib/bootstrap_validator_rails/engine.rb +4 -0
  5. data/lib/bootstrap_validator_rails/version.rb +3 -0
  6. data/lib/bootstrap_validator_rails.rb +42 -0
  7. data/lib/tasks/bootstrap_validator_rails_tasks.rake +4 -0
  8. data/test/bootstrap_validator_rails_test.rb +13 -0
  9. data/test/dummy/README.rdoc +28 -0
  10. data/test/dummy/Rakefile +6 -0
  11. data/test/dummy/app/assets/javascripts/application.js +13 -0
  12. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  13. data/test/dummy/app/controllers/application_controller.rb +5 -0
  14. data/test/dummy/app/helpers/application_helper.rb +2 -0
  15. data/test/dummy/app/models/post.rb +3 -0
  16. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  17. data/test/dummy/bin/bundle +3 -0
  18. data/test/dummy/bin/rails +4 -0
  19. data/test/dummy/bin/rake +4 -0
  20. data/test/dummy/config/application.rb +23 -0
  21. data/test/dummy/config/boot.rb +5 -0
  22. data/test/dummy/config/database.yml +25 -0
  23. data/test/dummy/config/environment.rb +5 -0
  24. data/test/dummy/config/environments/development.rb +37 -0
  25. data/test/dummy/config/environments/production.rb +82 -0
  26. data/test/dummy/config/environments/test.rb +39 -0
  27. data/test/dummy/config/initializers/assets.rb +8 -0
  28. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  29. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  30. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  31. data/test/dummy/config/initializers/inflections.rb +16 -0
  32. data/test/dummy/config/initializers/mime_types.rb +4 -0
  33. data/test/dummy/config/initializers/session_store.rb +3 -0
  34. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  35. data/test/dummy/config/locales/en.yml +23 -0
  36. data/test/dummy/config/routes.rb +56 -0
  37. data/test/dummy/config/secrets.yml +22 -0
  38. data/test/dummy/config.ru +4 -0
  39. data/test/dummy/db/development.sqlite3 +0 -0
  40. data/test/dummy/db/migrate/20140723124112_create_posts.rb +7 -0
  41. data/test/dummy/db/schema.rb +20 -0
  42. data/test/dummy/db/test.sqlite3 +0 -0
  43. data/test/dummy/log/ENV=test.log +0 -0
  44. data/test/dummy/log/development.log +22 -0
  45. data/test/dummy/log/test.log +781 -0
  46. data/test/dummy/public/404.html +67 -0
  47. data/test/dummy/public/422.html +67 -0
  48. data/test/dummy/public/500.html +66 -0
  49. data/test/dummy/public/favicon.ico +0 -0
  50. data/test/test_helper.rb +15 -0
  51. data/vendor/assets/javascripts/bootstrapValidator.js +1803 -0
  52. data/vendor/assets/javascripts/language/de_DE.js +326 -0
  53. data/vendor/assets/javascripts/language/en_US.js +327 -0
  54. data/vendor/assets/javascripts/language/es_CL.js +326 -0
  55. data/vendor/assets/javascripts/language/hu_HU.js +326 -0
  56. data/vendor/assets/javascripts/language/vi_VN.js +322 -0
  57. data/vendor/assets/javascripts/language/zh_CN.js +326 -0
  58. data/vendor/assets/javascripts/language/zh_TW.js +326 -0
  59. data/vendor/assets/javascripts/validator/base64.js +25 -0
  60. data/vendor/assets/javascripts/validator/between.js +66 -0
  61. data/vendor/assets/javascripts/validator/callback.js +40 -0
  62. data/vendor/assets/javascripts/validator/choice.js +68 -0
  63. data/vendor/assets/javascripts/validator/creditCard.js +103 -0
  64. data/vendor/assets/javascripts/validator/cusip.js +55 -0
  65. data/vendor/assets/javascripts/validator/cvv.js +116 -0
  66. data/vendor/assets/javascripts/validator/date.js +118 -0
  67. data/vendor/assets/javascripts/validator/different.js +41 -0
  68. data/vendor/assets/javascripts/validator/digits.js +24 -0
  69. data/vendor/assets/javascripts/validator/ean.js +40 -0
  70. data/vendor/assets/javascripts/validator/emailAddress.js +31 -0
  71. data/vendor/assets/javascripts/validator/file.js +69 -0
  72. data/vendor/assets/javascripts/validator/greaterThan.js +61 -0
  73. data/vendor/assets/javascripts/validator/grid.js +37 -0
  74. data/vendor/assets/javascripts/validator/hex.js +25 -0
  75. data/vendor/assets/javascripts/validator/hexColor.js +28 -0
  76. data/vendor/assets/javascripts/validator/iban.js +246 -0
  77. data/vendor/assets/javascripts/validator/id.js +815 -0
  78. data/vendor/assets/javascripts/validator/identical.js +40 -0
  79. data/vendor/assets/javascripts/validator/imei.js +44 -0
  80. data/vendor/assets/javascripts/validator/integer.js +28 -0
  81. data/vendor/assets/javascripts/validator/ip.js +48 -0
  82. data/vendor/assets/javascripts/validator/isbn.js +86 -0
  83. data/vendor/assets/javascripts/validator/isin.js +59 -0
  84. data/vendor/assets/javascripts/validator/ismn.js +59 -0
  85. data/vendor/assets/javascripts/validator/issn.js +46 -0
  86. data/vendor/assets/javascripts/validator/lessThan.js +61 -0
  87. data/vendor/assets/javascripts/validator/mac.js +25 -0
  88. data/vendor/assets/javascripts/validator/notEmpty.js +32 -0
  89. data/vendor/assets/javascripts/validator/numeric.js +39 -0
  90. data/vendor/assets/javascripts/validator/phone.js +84 -0
  91. data/vendor/assets/javascripts/validator/regexp.js +42 -0
  92. data/vendor/assets/javascripts/validator/remote.js +70 -0
  93. data/vendor/assets/javascripts/validator/rtn.js +38 -0
  94. data/vendor/assets/javascripts/validator/sedol.js +40 -0
  95. data/vendor/assets/javascripts/validator/siren.js +28 -0
  96. data/vendor/assets/javascripts/validator/siret.js +38 -0
  97. data/vendor/assets/javascripts/validator/step.js +64 -0
  98. data/vendor/assets/javascripts/validator/stringCase.js +36 -0
  99. data/vendor/assets/javascripts/validator/stringLength.js +81 -0
  100. data/vendor/assets/javascripts/validator/uri.js +101 -0
  101. data/vendor/assets/javascripts/validator/uuid.js +46 -0
  102. data/vendor/assets/javascripts/validator/vat.js +1220 -0
  103. data/vendor/assets/javascripts/validator/vin.js +49 -0
  104. data/vendor/assets/javascripts/validator/zipCode.js +162 -0
  105. data/vendor/assets/stylesheets/bootstrapValidator.css +21 -0
  106. metadata +233 -0
@@ -0,0 +1,781 @@
1
+  (0.2ms) begin transaction
2
+ ---------------------------------------
3
+ BootstrapValidatorRailsTest: test_truth
4
+ ---------------------------------------
5
+  (0.1ms) rollback transaction
6
+  (0.1ms) begin transaction
7
+ ---------------------------------------
8
+ BootstrapValidatorRailsTest: test_truth
9
+ ---------------------------------------
10
+  (0.1ms) rollback transaction
11
+  (0.1ms) begin transaction
12
+ ---------------------------------------
13
+ BootstrapValidatorRailsTest: test_truth
14
+ ---------------------------------------
15
+  (0.0ms) rollback transaction
16
+  (0.1ms) begin transaction
17
+ ---------------------------------------
18
+ BootstrapValidatorRailsTest: test_truth
19
+ ---------------------------------------
20
+  (0.1ms) rollback transaction
21
+  (0.1ms) begin transaction
22
+ ---------------------------------------
23
+ BootstrapValidatorRailsTest: test_truth
24
+ ---------------------------------------
25
+  (0.1ms) rollback transaction
26
+  (0.1ms) begin transaction
27
+ ---------------------------------------
28
+ BootstrapValidatorRailsTest: test_truth
29
+ ---------------------------------------
30
+  (0.0ms) rollback transaction
31
+  (0.1ms) begin transaction
32
+ ---------------------------------------
33
+ BootstrapValidatorRailsTest: test_truth
34
+ ---------------------------------------
35
+  (0.0ms) rollback transaction
36
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
37
+ SQLite3::SQLException: no such table: posts: SELECT "posts".* FROM "posts"
38
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
39
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
40
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
41
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
42
+  (0.1ms) begin transaction
43
+ ---------------------------------------
44
+ BootstrapValidatorRailsTest: test_truth
45
+ ---------------------------------------
46
+  (0.1ms) rollback transaction
47
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
48
+  (0.1ms) begin transaction
49
+ --------------------------------------
50
+ BootstrapValidatorRailsTest: test_test
51
+ --------------------------------------
52
+  (0.1ms) rollback transaction
53
+  (0.0ms) begin transaction
54
+ ---------------------------------------
55
+ BootstrapValidatorRailsTest: test_truth
56
+ ---------------------------------------
57
+  (0.0ms) rollback transaction
58
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
59
+  (0.1ms) begin transaction
60
+ --------------------------------------
61
+ BootstrapValidatorRailsTest: test_test
62
+ --------------------------------------
63
+  (0.0ms) rollback transaction
64
+  (0.1ms) begin transaction
65
+ ---------------------------------------
66
+ BootstrapValidatorRailsTest: test_truth
67
+ ---------------------------------------
68
+  (0.0ms) rollback transaction
69
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
70
+  (0.1ms) begin transaction
71
+ --------------------------------------
72
+ BootstrapValidatorRailsTest: test_test
73
+ --------------------------------------
74
+  (0.1ms) rollback transaction
75
+  (0.0ms) begin transaction
76
+ ---------------------------------------
77
+ BootstrapValidatorRailsTest: test_truth
78
+ ---------------------------------------
79
+  (0.1ms) rollback transaction
80
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
81
+  (0.1ms) begin transaction
82
+ --------------------------------------
83
+ BootstrapValidatorRailsTest: test_test
84
+ --------------------------------------
85
+  (0.0ms) rollback transaction
86
+  (0.1ms) begin transaction
87
+ ---------------------------------------
88
+ BootstrapValidatorRailsTest: test_truth
89
+ ---------------------------------------
90
+  (0.0ms) rollback transaction
91
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
92
+  (0.1ms) begin transaction
93
+ --------------------------------------
94
+ BootstrapValidatorRailsTest: test_test
95
+ --------------------------------------
96
+  (0.1ms) rollback transaction
97
+  (0.1ms) begin transaction
98
+ ---------------------------------------
99
+ BootstrapValidatorRailsTest: test_truth
100
+ ---------------------------------------
101
+  (0.0ms) rollback transaction
102
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
103
+  (0.1ms) begin transaction
104
+ --------------------------------------
105
+ BootstrapValidatorRailsTest: test_test
106
+ --------------------------------------
107
+  (0.1ms) rollback transaction
108
+  (0.0ms) begin transaction
109
+ ---------------------------------------
110
+ BootstrapValidatorRailsTest: test_truth
111
+ ---------------------------------------
112
+  (0.0ms) rollback transaction
113
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
114
+  (0.1ms) begin transaction
115
+ --------------------------------------
116
+ BootstrapValidatorRailsTest: test_test
117
+ --------------------------------------
118
+  (0.1ms) rollback transaction
119
+  (0.1ms) begin transaction
120
+ ---------------------------------------
121
+ BootstrapValidatorRailsTest: test_truth
122
+ ---------------------------------------
123
+  (0.0ms) rollback transaction
124
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
125
+  (0.1ms) begin transaction
126
+ --------------------------------------
127
+ BootstrapValidatorRailsTest: test_test
128
+ --------------------------------------
129
+  (0.1ms) rollback transaction
130
+  (0.1ms) begin transaction
131
+ ---------------------------------------
132
+ BootstrapValidatorRailsTest: test_truth
133
+ ---------------------------------------
134
+  (0.1ms) rollback transaction
135
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
136
+  (0.1ms) begin transaction
137
+ --------------------------------------
138
+ BootstrapValidatorRailsTest: test_test
139
+ --------------------------------------
140
+  (0.1ms) rollback transaction
141
+  (0.0ms) begin transaction
142
+ ---------------------------------------
143
+ BootstrapValidatorRailsTest: test_truth
144
+ ---------------------------------------
145
+  (0.0ms) rollback transaction
146
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
147
+  (0.1ms) begin transaction
148
+ --------------------------------------
149
+ BootstrapValidatorRailsTest: test_test
150
+ --------------------------------------
151
+  (0.1ms) rollback transaction
152
+  (0.0ms) begin transaction
153
+ ---------------------------------------
154
+ BootstrapValidatorRailsTest: test_truth
155
+ ---------------------------------------
156
+  (0.0ms) rollback transaction
157
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
158
+  (0.1ms) begin transaction
159
+ --------------------------------------
160
+ BootstrapValidatorRailsTest: test_test
161
+ --------------------------------------
162
+  (0.1ms) rollback transaction
163
+  (0.1ms) begin transaction
164
+ ---------------------------------------
165
+ BootstrapValidatorRailsTest: test_truth
166
+ ---------------------------------------
167
+  (0.1ms) rollback transaction
168
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
169
+  (0.1ms) begin transaction
170
+ --------------------------------------
171
+ BootstrapValidatorRailsTest: test_test
172
+ --------------------------------------
173
+  (0.1ms) rollback transaction
174
+  (0.0ms) begin transaction
175
+ ---------------------------------------
176
+ BootstrapValidatorRailsTest: test_truth
177
+ ---------------------------------------
178
+  (0.1ms) rollback transaction
179
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
180
+  (0.1ms) begin transaction
181
+ --------------------------------------
182
+ BootstrapValidatorRailsTest: test_test
183
+ --------------------------------------
184
+  (0.1ms) rollback transaction
185
+  (0.1ms) begin transaction
186
+ ---------------------------------------
187
+ BootstrapValidatorRailsTest: test_truth
188
+ ---------------------------------------
189
+  (0.0ms) rollback transaction
190
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
191
+  (0.1ms) begin transaction
192
+ --------------------------------------
193
+ BootstrapValidatorRailsTest: test_test
194
+ --------------------------------------
195
+  (0.1ms) rollback transaction
196
+  (0.0ms) begin transaction
197
+ ---------------------------------------
198
+ BootstrapValidatorRailsTest: test_truth
199
+ ---------------------------------------
200
+  (0.0ms) rollback transaction
201
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
202
+  (0.1ms) begin transaction
203
+ --------------------------------------
204
+ BootstrapValidatorRailsTest: test_test
205
+ --------------------------------------
206
+  (0.1ms) rollback transaction
207
+  (0.0ms) begin transaction
208
+ ---------------------------------------
209
+ BootstrapValidatorRailsTest: test_truth
210
+ ---------------------------------------
211
+  (0.1ms) rollback transaction
212
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
213
+  (0.1ms) begin transaction
214
+ --------------------------------------
215
+ BootstrapValidatorRailsTest: test_test
216
+ --------------------------------------
217
+  (0.1ms) rollback transaction
218
+  (0.0ms) begin transaction
219
+ ---------------------------------------
220
+ BootstrapValidatorRailsTest: test_truth
221
+ ---------------------------------------
222
+  (0.0ms) rollback transaction
223
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
224
+  (0.1ms) begin transaction
225
+ --------------------------------------
226
+ BootstrapValidatorRailsTest: test_test
227
+ --------------------------------------
228
+  (0.1ms) rollback transaction
229
+  (0.1ms) begin transaction
230
+ ---------------------------------------
231
+ BootstrapValidatorRailsTest: test_truth
232
+ ---------------------------------------
233
+  (0.1ms) rollback transaction
234
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
235
+  (0.1ms) begin transaction
236
+ --------------------------------------
237
+ BootstrapValidatorRailsTest: test_test
238
+ --------------------------------------
239
+  (0.1ms) rollback transaction
240
+  (0.0ms) begin transaction
241
+ ---------------------------------------
242
+ BootstrapValidatorRailsTest: test_truth
243
+ ---------------------------------------
244
+  (0.0ms) rollback transaction
245
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
246
+  (0.1ms) begin transaction
247
+ --------------------------------------
248
+ BootstrapValidatorRailsTest: test_test
249
+ --------------------------------------
250
+  (0.1ms) rollback transaction
251
+  (0.0ms) begin transaction
252
+ ---------------------------------------
253
+ BootstrapValidatorRailsTest: test_truth
254
+ ---------------------------------------
255
+  (0.0ms) rollback transaction
256
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
257
+  (0.1ms) begin transaction
258
+ --------------------------------------
259
+ BootstrapValidatorRailsTest: test_test
260
+ --------------------------------------
261
+  (0.1ms) rollback transaction
262
+  (0.0ms) begin transaction
263
+ ---------------------------------------
264
+ BootstrapValidatorRailsTest: test_truth
265
+ ---------------------------------------
266
+  (0.0ms) rollback transaction
267
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
268
+  (0.1ms) begin transaction
269
+ --------------------------------------
270
+ BootstrapValidatorRailsTest: test_test
271
+ --------------------------------------
272
+  (0.1ms) rollback transaction
273
+  (0.0ms) begin transaction
274
+ ---------------------------------------
275
+ BootstrapValidatorRailsTest: test_truth
276
+ ---------------------------------------
277
+  (0.0ms) rollback transaction
278
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
279
+  (0.1ms) begin transaction
280
+ --------------------------------------
281
+ BootstrapValidatorRailsTest: test_test
282
+ --------------------------------------
283
+  (0.1ms) rollback transaction
284
+  (0.1ms) begin transaction
285
+ ---------------------------------------
286
+ BootstrapValidatorRailsTest: test_truth
287
+ ---------------------------------------
288
+  (0.0ms) rollback transaction
289
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
290
+  (0.1ms) begin transaction
291
+ --------------------------------------
292
+ BootstrapValidatorRailsTest: test_test
293
+ --------------------------------------
294
+  (0.1ms) rollback transaction
295
+  (0.1ms) begin transaction
296
+ ---------------------------------------
297
+ BootstrapValidatorRailsTest: test_truth
298
+ ---------------------------------------
299
+  (0.0ms) rollback transaction
300
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
301
+  (0.1ms) begin transaction
302
+ --------------------------------------
303
+ BootstrapValidatorRailsTest: test_test
304
+ --------------------------------------
305
+  (0.1ms) rollback transaction
306
+  (0.1ms) begin transaction
307
+ ---------------------------------------
308
+ BootstrapValidatorRailsTest: test_truth
309
+ ---------------------------------------
310
+  (0.0ms) rollback transaction
311
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
312
+  (0.1ms) begin transaction
313
+ --------------------------------------
314
+ BootstrapValidatorRailsTest: test_test
315
+ --------------------------------------
316
+  (0.1ms) rollback transaction
317
+  (0.1ms) begin transaction
318
+ ---------------------------------------
319
+ BootstrapValidatorRailsTest: test_truth
320
+ ---------------------------------------
321
+  (0.0ms) rollback transaction
322
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
323
+  (0.1ms) begin transaction
324
+ --------------------------------------
325
+ BootstrapValidatorRailsTest: test_test
326
+ --------------------------------------
327
+  (0.1ms) rollback transaction
328
+  (0.1ms) begin transaction
329
+ ---------------------------------------
330
+ BootstrapValidatorRailsTest: test_truth
331
+ ---------------------------------------
332
+  (0.0ms) rollback transaction
333
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
334
+  (0.1ms) begin transaction
335
+ --------------------------------------
336
+ BootstrapValidatorRailsTest: test_test
337
+ --------------------------------------
338
+  (0.1ms) rollback transaction
339
+  (0.0ms) begin transaction
340
+ ---------------------------------------
341
+ BootstrapValidatorRailsTest: test_truth
342
+ ---------------------------------------
343
+  (0.0ms) rollback transaction
344
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
345
+  (0.1ms) begin transaction
346
+ --------------------------------------
347
+ BootstrapValidatorRailsTest: test_test
348
+ --------------------------------------
349
+  (0.1ms) rollback transaction
350
+  (0.0ms) begin transaction
351
+ ---------------------------------------
352
+ BootstrapValidatorRailsTest: test_truth
353
+ ---------------------------------------
354
+  (0.0ms) rollback transaction
355
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
356
+  (0.1ms) begin transaction
357
+ --------------------------------------
358
+ BootstrapValidatorRailsTest: test_test
359
+ --------------------------------------
360
+  (0.1ms) rollback transaction
361
+  (0.1ms) begin transaction
362
+ ---------------------------------------
363
+ BootstrapValidatorRailsTest: test_truth
364
+ ---------------------------------------
365
+  (0.1ms) rollback transaction
366
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
367
+  (0.1ms) begin transaction
368
+ --------------------------------------
369
+ BootstrapValidatorRailsTest: test_test
370
+ --------------------------------------
371
+  (0.1ms) rollback transaction
372
+  (0.0ms) begin transaction
373
+ ---------------------------------------
374
+ BootstrapValidatorRailsTest: test_truth
375
+ ---------------------------------------
376
+  (0.0ms) rollback transaction
377
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
378
+  (0.1ms) begin transaction
379
+ --------------------------------------
380
+ BootstrapValidatorRailsTest: test_test
381
+ --------------------------------------
382
+  (0.1ms) rollback transaction
383
+  (0.0ms) begin transaction
384
+ ---------------------------------------
385
+ BootstrapValidatorRailsTest: test_truth
386
+ ---------------------------------------
387
+  (0.0ms) rollback transaction
388
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
389
+  (0.1ms) begin transaction
390
+ --------------------------------------
391
+ BootstrapValidatorRailsTest: test_test
392
+ --------------------------------------
393
+  (0.1ms) rollback transaction
394
+  (0.0ms) begin transaction
395
+ ---------------------------------------
396
+ BootstrapValidatorRailsTest: test_truth
397
+ ---------------------------------------
398
+  (0.1ms) rollback transaction
399
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
400
+  (0.1ms) begin transaction
401
+ --------------------------------------
402
+ BootstrapValidatorRailsTest: test_test
403
+ --------------------------------------
404
+  (0.1ms) rollback transaction
405
+  (0.1ms) begin transaction
406
+ ---------------------------------------
407
+ BootstrapValidatorRailsTest: test_truth
408
+ ---------------------------------------
409
+  (0.0ms) rollback transaction
410
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
411
+  (0.1ms) begin transaction
412
+ --------------------------------------
413
+ BootstrapValidatorRailsTest: test_test
414
+ --------------------------------------
415
+  (0.1ms) rollback transaction
416
+  (0.0ms) begin transaction
417
+ ---------------------------------------
418
+ BootstrapValidatorRailsTest: test_truth
419
+ ---------------------------------------
420
+  (0.0ms) rollback transaction
421
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
422
+  (0.1ms) begin transaction
423
+ --------------------------------------
424
+ BootstrapValidatorRailsTest: test_test
425
+ --------------------------------------
426
+  (0.1ms) rollback transaction
427
+  (0.0ms) begin transaction
428
+ ---------------------------------------
429
+ BootstrapValidatorRailsTest: test_truth
430
+ ---------------------------------------
431
+  (0.0ms) rollback transaction
432
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
433
+  (0.1ms) begin transaction
434
+ --------------------------------------
435
+ BootstrapValidatorRailsTest: test_test
436
+ --------------------------------------
437
+  (0.1ms) rollback transaction
438
+  (0.1ms) begin transaction
439
+ ---------------------------------------
440
+ BootstrapValidatorRailsTest: test_truth
441
+ ---------------------------------------
442
+  (0.1ms) rollback transaction
443
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
444
+  (0.1ms) begin transaction
445
+ --------------------------------------
446
+ BootstrapValidatorRailsTest: test_test
447
+ --------------------------------------
448
+  (0.1ms) rollback transaction
449
+  (0.1ms) begin transaction
450
+ ---------------------------------------
451
+ BootstrapValidatorRailsTest: test_truth
452
+ ---------------------------------------
453
+  (0.1ms) rollback transaction
454
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
455
+  (0.1ms) begin transaction
456
+ --------------------------------------
457
+ BootstrapValidatorRailsTest: test_test
458
+ --------------------------------------
459
+  (0.1ms) rollback transaction
460
+  (0.0ms) begin transaction
461
+ ---------------------------------------
462
+ BootstrapValidatorRailsTest: test_truth
463
+ ---------------------------------------
464
+  (0.0ms) rollback transaction
465
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
466
+  (0.1ms) begin transaction
467
+ --------------------------------------
468
+ BootstrapValidatorRailsTest: test_test
469
+ --------------------------------------
470
+  (0.1ms) rollback transaction
471
+  (0.1ms) begin transaction
472
+ ---------------------------------------
473
+ BootstrapValidatorRailsTest: test_truth
474
+ ---------------------------------------
475
+  (0.0ms) rollback transaction
476
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
477
+  (0.1ms) begin transaction
478
+ --------------------------------------
479
+ BootstrapValidatorRailsTest: test_test
480
+ --------------------------------------
481
+  (0.1ms) rollback transaction
482
+  (0.1ms) begin transaction
483
+ ---------------------------------------
484
+ BootstrapValidatorRailsTest: test_truth
485
+ ---------------------------------------
486
+  (0.0ms) rollback transaction
487
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
488
+  (0.1ms) begin transaction
489
+ --------------------------------------
490
+ BootstrapValidatorRailsTest: test_test
491
+ --------------------------------------
492
+  (0.1ms) rollback transaction
493
+  (0.1ms) begin transaction
494
+ ---------------------------------------
495
+ BootstrapValidatorRailsTest: test_truth
496
+ ---------------------------------------
497
+  (0.1ms) rollback transaction
498
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
499
+  (0.1ms) begin transaction
500
+ --------------------------------------
501
+ BootstrapValidatorRailsTest: test_test
502
+ --------------------------------------
503
+  (0.1ms) rollback transaction
504
+  (0.1ms) begin transaction
505
+ ---------------------------------------
506
+ BootstrapValidatorRailsTest: test_truth
507
+ ---------------------------------------
508
+  (0.1ms) rollback transaction
509
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
510
+  (0.1ms) begin transaction
511
+ --------------------------------------
512
+ BootstrapValidatorRailsTest: test_test
513
+ --------------------------------------
514
+  (0.1ms) rollback transaction
515
+  (0.1ms) begin transaction
516
+ ---------------------------------------
517
+ BootstrapValidatorRailsTest: test_truth
518
+ ---------------------------------------
519
+  (0.0ms) rollback transaction
520
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
521
+  (0.1ms) begin transaction
522
+ --------------------------------------
523
+ BootstrapValidatorRailsTest: test_test
524
+ --------------------------------------
525
+  (0.1ms) rollback transaction
526
+  (0.1ms) begin transaction
527
+ ---------------------------------------
528
+ BootstrapValidatorRailsTest: test_truth
529
+ ---------------------------------------
530
+  (0.0ms) rollback transaction
531
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
532
+  (0.1ms) begin transaction
533
+ --------------------------------------
534
+ BootstrapValidatorRailsTest: test_test
535
+ --------------------------------------
536
+  (0.1ms) rollback transaction
537
+  (0.1ms) begin transaction
538
+ ---------------------------------------
539
+ BootstrapValidatorRailsTest: test_truth
540
+ ---------------------------------------
541
+  (0.0ms) rollback transaction
542
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
543
+  (0.1ms) begin transaction
544
+ --------------------------------------
545
+ BootstrapValidatorRailsTest: test_test
546
+ --------------------------------------
547
+  (0.1ms) rollback transaction
548
+  (0.0ms) begin transaction
549
+ ---------------------------------------
550
+ BootstrapValidatorRailsTest: test_truth
551
+ ---------------------------------------
552
+  (0.0ms) rollback transaction
553
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
554
+  (0.1ms) begin transaction
555
+ --------------------------------------
556
+ BootstrapValidatorRailsTest: test_test
557
+ --------------------------------------
558
+  (0.1ms) rollback transaction
559
+  (0.1ms) begin transaction
560
+ ---------------------------------------
561
+ BootstrapValidatorRailsTest: test_truth
562
+ ---------------------------------------
563
+  (0.0ms) rollback transaction
564
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
565
+  (0.1ms) begin transaction
566
+ --------------------------------------
567
+ BootstrapValidatorRailsTest: test_test
568
+ --------------------------------------
569
+  (0.1ms) rollback transaction
570
+  (0.1ms) begin transaction
571
+ ---------------------------------------
572
+ BootstrapValidatorRailsTest: test_truth
573
+ ---------------------------------------
574
+  (0.0ms) rollback transaction
575
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
576
+  (0.1ms) begin transaction
577
+ --------------------------------------
578
+ BootstrapValidatorRailsTest: test_test
579
+ --------------------------------------
580
+  (0.1ms) rollback transaction
581
+  (0.0ms) begin transaction
582
+ ---------------------------------------
583
+ BootstrapValidatorRailsTest: test_truth
584
+ ---------------------------------------
585
+  (0.0ms) rollback transaction
586
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
587
+  (0.1ms) begin transaction
588
+ --------------------------------------
589
+ BootstrapValidatorRailsTest: test_test
590
+ --------------------------------------
591
+  (0.1ms) rollback transaction
592
+  (0.1ms) begin transaction
593
+ ---------------------------------------
594
+ BootstrapValidatorRailsTest: test_truth
595
+ ---------------------------------------
596
+  (0.1ms) rollback transaction
597
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
598
+  (0.1ms) begin transaction
599
+ --------------------------------------
600
+ BootstrapValidatorRailsTest: test_test
601
+ --------------------------------------
602
+  (0.1ms) rollback transaction
603
+  (0.0ms) begin transaction
604
+ ---------------------------------------
605
+ BootstrapValidatorRailsTest: test_truth
606
+ ---------------------------------------
607
+  (0.0ms) rollback transaction
608
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
609
+  (0.1ms) begin transaction
610
+ --------------------------------------
611
+ BootstrapValidatorRailsTest: test_test
612
+ --------------------------------------
613
+  (0.1ms) rollback transaction
614
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
615
+  (0.1ms) begin transaction
616
+ --------------------------------------
617
+ BootstrapValidatorRailsTest: test_test
618
+ --------------------------------------
619
+  (0.1ms) rollback transaction
620
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
621
+  (0.1ms) begin transaction
622
+ --------------------------------------
623
+ BootstrapValidatorRailsTest: test_test
624
+ --------------------------------------
625
+  (0.1ms) rollback transaction
626
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
627
+  (0.1ms) begin transaction
628
+ --------------------------------------
629
+ BootstrapValidatorRailsTest: test_test
630
+ --------------------------------------
631
+  (0.1ms) rollback transaction
632
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
633
+  (0.1ms) begin transaction
634
+ --------------------------------------
635
+ BootstrapValidatorRailsTest: test_test
636
+ --------------------------------------
637
+  (0.1ms) rollback transaction
638
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
639
+  (0.1ms) begin transaction
640
+ --------------------------------------
641
+ BootstrapValidatorRailsTest: test_test
642
+ --------------------------------------
643
+  (0.1ms) rollback transaction
644
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
645
+  (0.1ms) begin transaction
646
+ --------------------------------------
647
+ BootstrapValidatorRailsTest: test_test
648
+ --------------------------------------
649
+  (0.1ms) rollback transaction
650
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
651
+  (0.1ms) begin transaction
652
+ --------------------------------------
653
+ BootstrapValidatorRailsTest: test_test
654
+ --------------------------------------
655
+  (0.1ms) rollback transaction
656
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
657
+  (0.1ms) begin transaction
658
+ --------------------------------------
659
+ BootstrapValidatorRailsTest: test_test
660
+ --------------------------------------
661
+  (0.1ms) rollback transaction
662
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
663
+  (0.1ms) begin transaction
664
+ --------------------------------------
665
+ BootstrapValidatorRailsTest: test_test
666
+ --------------------------------------
667
+  (0.1ms) rollback transaction
668
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
669
+  (0.1ms) begin transaction
670
+ --------------------------------------
671
+ BootstrapValidatorRailsTest: test_test
672
+ --------------------------------------
673
+  (0.1ms) rollback transaction
674
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
675
+  (0.1ms) begin transaction
676
+ --------------------------------------
677
+ BootstrapValidatorRailsTest: test_test
678
+ --------------------------------------
679
+  (0.1ms) rollback transaction
680
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
681
+  (0.1ms) begin transaction
682
+ --------------------------------------
683
+ BootstrapValidatorRailsTest: test_test
684
+ --------------------------------------
685
+  (0.1ms) rollback transaction
686
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
687
+  (0.1ms) begin transaction
688
+ --------------------------------------
689
+ BootstrapValidatorRailsTest: test_test
690
+ --------------------------------------
691
+  (0.1ms) rollback transaction
692
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
693
+  (0.1ms) begin transaction
694
+ --------------------------------------
695
+ BootstrapValidatorRailsTest: test_test
696
+ --------------------------------------
697
+  (0.1ms) rollback transaction
698
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
699
+  (0.1ms) begin transaction
700
+ --------------------------------------
701
+ BootstrapValidatorRailsTest: test_test
702
+ --------------------------------------
703
+  (0.1ms) rollback transaction
704
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
705
+  (0.1ms) begin transaction
706
+ --------------------------------------
707
+ BootstrapValidatorRailsTest: test_test
708
+ --------------------------------------
709
+  (0.1ms) rollback transaction
710
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
711
+  (0.1ms) begin transaction
712
+ --------------------------------------
713
+ BootstrapValidatorRailsTest: test_test
714
+ --------------------------------------
715
+  (0.1ms) rollback transaction
716
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
717
+  (0.1ms) begin transaction
718
+ --------------------------------------
719
+ BootstrapValidatorRailsTest: test_test
720
+ --------------------------------------
721
+  (0.1ms) rollback transaction
722
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
723
+  (0.1ms) begin transaction
724
+ --------------------------------------
725
+ BootstrapValidatorRailsTest: test_test
726
+ --------------------------------------
727
+  (0.1ms) rollback transaction
728
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
729
+  (0.1ms) begin transaction
730
+ --------------------------------------
731
+ BootstrapValidatorRailsTest: test_test
732
+ --------------------------------------
733
+  (0.1ms) rollback transaction
734
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
735
+  (0.1ms) begin transaction
736
+ -------------------------------------------
737
+ BootstrapValidatorRailsTest: test_test_test
738
+ -------------------------------------------
739
+  (0.1ms) rollback transaction
740
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
741
+  (0.1ms) begin transaction
742
+ -------------------------------------------------------------
743
+ BootstrapValidatorRailsTest: test_test_will_be_included_later
744
+ -------------------------------------------------------------
745
+  (0.1ms) rollback transaction
746
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
747
+  (0.1ms) begin transaction
748
+ -------------------------------------------------------------
749
+ BootstrapValidatorRailsTest: test_test_will_be_included_later
750
+ -------------------------------------------------------------
751
+  (0.1ms) rollback transaction
752
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
753
+  (0.1ms) begin transaction
754
+ -------------------------------------------------------------
755
+ BootstrapValidatorRailsTest: test_test_will_be_included_later
756
+ -------------------------------------------------------------
757
+  (0.2ms) rollback transaction
758
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
759
+  (0.1ms) begin transaction
760
+ -------------------------------------------------------------
761
+ BootstrapValidatorRailsTest: test_test_will_be_included_later
762
+ -------------------------------------------------------------
763
+  (0.1ms) rollback transaction
764
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
765
+  (0.1ms) begin transaction
766
+ -------------------------------------------------------------
767
+ BootstrapValidatorRailsTest: test_test_will_be_included_later
768
+ -------------------------------------------------------------
769
+  (0.1ms) rollback transaction
770
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
771
+  (0.1ms) begin transaction
772
+ -------------------------------------------------------------
773
+ BootstrapValidatorRailsTest: test_test_will_be_included_later
774
+ -------------------------------------------------------------
775
+  (0.1ms) rollback transaction
776
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
777
+  (0.1ms) begin transaction
778
+ -------------------------------------------------------------
779
+ BootstrapValidatorRailsTest: test_test_will_be_included_later
780
+ -------------------------------------------------------------
781
+  (0.1ms) rollback transaction