attachs 0.4.2 → 0.4.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0dc2a875380a6891395c5771056ce19e4e332e39
4
- data.tar.gz: 4a9f672f5eb7ddd27f8e4730b67addc18b0590f0
3
+ metadata.gz: 60ccaef21683898e8c414a86f0db866a5ebaec4b
4
+ data.tar.gz: 80a04699db9e65bcdbe8db0036f732872f516422
5
5
  SHA512:
6
- metadata.gz: 039aa93fee91348e30005936d12d461dfdc718a4562d1bde2a41e0cd8b4cc4ecd41b06dc72a50acedb5ff4e6b81927ba4416b0309dcf781446b23c346bdf25f9
7
- data.tar.gz: 2c295688a7b24ec5cb77d1c5b74eaa02b14e73074007e01857f3dbfc0a5f020fd0062d8613230b89b6257826b7ce65d962d2ec5cae5802bbd80bca4c68a8d774
6
+ metadata.gz: d09a6f88341cfd6c7e8a81db8fa3eb9c692a13a0b84d717b3ac7354896a1d4bc02760feebc7feb68f1cb372233d27c8b36dc3e42d5b4cacb50053cfb3fcf0178
7
+ data.tar.gz: d755524af02fdb500ad2887961f13ed1a3ff42079b9c39c57a4c80d526e9d1ae21bd0354e79115ecfd3faf3f2230ff38f7637e2b5ee0cd1e39101202f84d2633
@@ -1,4 +1,4 @@
1
- Copyright 2014 Museways
1
+ Copyright 2015 Museways
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -204,7 +204,7 @@ class User < ActiveRecord::Base
204
204
  end
205
205
  ```
206
206
 
207
- NOTE: If storage is s3 you can pass ssl: true to force https, or cachebuster: false in any storage to remove timestamp.
207
+ NOTE: If storage is s3 you can pass ssl: true to force https.
208
208
 
209
209
  ## Cachebuster
210
210
 
@@ -2,10 +2,10 @@ module Attachs
2
2
  module ActiveRecord
3
3
  module ConnectionAdapters
4
4
  COLUMNS = {
5
- filename: 'string',
5
+ filename: 'string',
6
6
  content_type: 'string',
7
- size: 'integer',
8
- updated_at: 'datetime'
7
+ size: 'integer',
8
+ updated_at: 'datetime'
9
9
  }
10
10
 
11
11
  module AbstractAdapter
@@ -17,10 +17,18 @@ module Attachs
17
17
  end
18
18
  else
19
19
  if options.has_key? :less_than and value.size > options[:less_than]
20
- record.errors.add attribute, :attachment_size_less_than, count: number_to_human_size(options[:less_than])
20
+ record.errors.add(
21
+ attribute,
22
+ :attachment_size_less_than,
23
+ count: number_to_human_size(options[:less_than])
24
+ )
21
25
  end
22
26
  if options.has_key? :greater_than and value.size < options[:greater_than]
23
- record.errors.add attribute, :attachment_size_greater_than, count: number_to_human_size(options[:greater_than])
27
+ record.errors.add(
28
+ attribute,
29
+ :attachment_size_greater_than,
30
+ count: number_to_human_size(options[:greater_than])
31
+ )
24
32
  end
25
33
  end
26
34
  end
@@ -2,7 +2,15 @@ module Attachs
2
2
  module Types
3
3
  class Default < Base
4
4
 
5
- %w(basename extension process process_styles destroy destroy_styles update).each do |name|
5
+ %w(
6
+ basename
7
+ extension
8
+ process
9
+ process_styles
10
+ destroy
11
+ destroy_styles
12
+ update
13
+ ).each do |name|
6
14
  define_method(name) {}
7
15
  end
8
16
 
@@ -1,5 +1,5 @@
1
1
  module Attachs
2
2
 
3
- VERSION = '0.4.2'
3
+ VERSION = '0.4.3'
4
4
 
5
5
  end
@@ -20,7 +20,11 @@ Dummy::Application.configure do
20
20
  # config.action_dispatch.rack_cache = true
21
21
 
22
22
  # Disable Rails's static asset server (Apache or nginx will already do this).
23
- config.serve_static_assets = false
23
+ if Rails::VERSION::MAJOR == 4 && Rails::VERSION::MINOR >= 2
24
+ config.serve_static_files = false
25
+ else
26
+ config.serve_static_assets = false
27
+ end
24
28
 
25
29
  # Compress JavaScripts and CSS.
26
30
  config.assets.js_compressor = :uglifier
@@ -13,7 +13,11 @@ Dummy::Application.configure do
13
13
  config.eager_load = false
14
14
 
15
15
  # Configure static asset server for tests with Cache-Control for performance.
16
- config.serve_static_assets = true
16
+ if Rails::VERSION::MAJOR == 4 && Rails::VERSION::MINOR >= 2
17
+ config.serve_static_files = false
18
+ else
19
+ config.serve_static_assets = false
20
+ end
17
21
  config.static_cache_control = "public, max-age=3600"
18
22
 
19
23
  # Show full error reports and disable caching.
@@ -33,4 +37,8 @@ Dummy::Application.configure do
33
37
 
34
38
  # Print deprecation notices to the stderr.
35
39
  config.active_support.deprecation = :stderr
40
+
41
+ if Rails::VERSION::MAJOR == 4 && Rails::VERSION::MINOR >= 2
42
+ config.active_support.test_order = :random
43
+ end
36
44
  end
@@ -63324,3 +63324,1347 @@ AttachmentTest: test_uri_source
63324
63324
  SQL (0.1ms) INSERT INTO "media" ("attach_content_type", "attach_filename", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_content_type", "text/plain"], ["attach_filename", "file.txt"], ["attach_size", 11], ["attach_updated_at", "2014-11-17 21:06:03.548206"], ["created_at", "2014-11-17 21:06:03.549061"], ["updated_at", "2014-11-17 21:06:03.549061"]]
63325
63325
   (0.4ms) RELEASE SAVEPOINT active_record_1
63326
63326
   (0.1ms) rollback transaction
63327
+  (0.4ms) CREATE TABLE "media" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attach_filename" varchar, "attach_content_type" varchar, "attach_size" integer, "attach_updated_at" datetime, "local_attach_filename" varchar, "local_attach_content_type" varchar, "local_attach_size" integer, "local_attach_updated_at" datetime, "s3_attach_filename" varchar, "s3_attach_content_type" varchar, "s3_attach_size" integer, "s3_attach_updated_at" datetime, "created_at" datetime, "updated_at" datetime) 
63328
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
63329
+  (0.1ms) select sqlite_version(*)
63330
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
63331
+  (0.0ms) SELECT version FROM "schema_migrations"
63332
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140808012639')
63333
+  (0.4ms) CREATE TABLE "media" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attach_filename" varchar, "attach_content_type" varchar, "attach_size" integer, "attach_updated_at" datetime, "local_attach_filename" varchar, "local_attach_content_type" varchar, "local_attach_size" integer, "local_attach_updated_at" datetime, "s3_attach_filename" varchar, "s3_attach_content_type" varchar, "s3_attach_size" integer, "s3_attach_updated_at" datetime, "created_at" datetime, "updated_at" datetime) 
63334
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
63335
+  (0.1ms) select sqlite_version(*)
63336
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
63337
+  (0.0ms) SELECT version FROM "schema_migrations"
63338
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140808012639')
63339
+  (0.1ms) begin transaction
63340
+ ------------------------------------------
63341
+ GeneratorsTest: test_initializer_generator
63342
+ ------------------------------------------
63343
+  (0.1ms) rollback transaction
63344
+  (0.0ms) begin transaction
63345
+ ----------------------------------
63346
+ ProcessorTest: test_contain_resize
63347
+ ----------------------------------
63348
+  (0.1ms) rollback transaction
63349
+  (0.1ms) begin transaction
63350
+ --------------------------------
63351
+ ProcessorTest: test_cover_resize
63352
+ --------------------------------
63353
+  (0.1ms) rollback transaction
63354
+  (0.1ms) begin transaction
63355
+ --------------------------------
63356
+ ProcessorTest: test_force_resize
63357
+ --------------------------------
63358
+  (0.1ms) rollback transaction
63359
+  (0.1ms) begin transaction
63360
+ ------------------------------------
63361
+ MigrationTest: test_column_migration
63362
+ ------------------------------------
63363
+  (0.3ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)
63364
+  (0.2ms) ALTER TABLE "pictures" ADD "image_filename" varchar
63365
+  (0.1ms) ALTER TABLE "pictures" ADD "image_content_type" varchar
63366
+  (0.1ms) ALTER TABLE "pictures" ADD "image_size" integer
63367
+  (0.1ms) ALTER TABLE "pictures" ADD "image_updated_at" datetime
63368
+  (0.0ms) SAVEPOINT active_record_1
63369
+  (0.7ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime)
63370
+  (0.1ms) SELECT * FROM "pictures"
63371
+  (0.1ms) DROP TABLE "pictures"
63372
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime) 
63373
+  (0.1ms) SELECT * FROM "apictures"
63374
+  (0.3ms) DROP TABLE "apictures"
63375
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63376
+  (0.1ms) SAVEPOINT active_record_1
63377
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime)
63378
+  (0.1ms) SELECT * FROM "pictures"
63379
+  (0.2ms) DROP TABLE "pictures"
63380
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime) 
63381
+  (0.1ms) SELECT * FROM "apictures"
63382
+  (0.1ms) DROP TABLE "apictures"
63383
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63384
+  (0.0ms) SAVEPOINT active_record_1
63385
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime)
63386
+  (0.1ms) SELECT * FROM "pictures"
63387
+  (0.1ms) DROP TABLE "pictures"
63388
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime) 
63389
+  (0.1ms) SELECT * FROM "apictures"
63390
+  (0.1ms) DROP TABLE "apictures"
63391
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63392
+  (0.0ms) SAVEPOINT active_record_1
63393
+  (0.2ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime)
63394
+  (0.1ms) SELECT * FROM "pictures"
63395
+  (0.2ms) DROP TABLE "pictures"
63396
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
63397
+  (0.0ms) SELECT * FROM "apictures"
63398
+  (0.1ms) DROP TABLE "apictures"
63399
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63400
+  (0.1ms) rollback transaction
63401
+  (0.0ms) begin transaction
63402
+ -----------------------------------
63403
+ MigrationTest: test_table_migration
63404
+ -----------------------------------
63405
+  (0.3ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime) 
63406
+  (0.1ms) DROP TABLE "pictures"
63407
+  (0.1ms) rollback transaction
63408
+  (0.1ms) begin transaction
63409
+ --------------------------------
63410
+ LocalStorageTest: test_image_url
63411
+ --------------------------------
63412
+  (0.1ms) SAVEPOINT active_record_1
63413
+ SQL (0.2ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "180x150.gif"], ["local_attach_content_type", "image/gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2015-02-14 16:35:21.988230"], ["created_at", "2015-02-14 16:35:21.992584"], ["updated_at", "2015-02-14 16:35:21.992584"]]
63414
+  (0.2ms) RELEASE SAVEPOINT active_record_1
63415
+  (0.1ms) rollback transaction
63416
+  (0.1ms) begin transaction
63417
+ ----------------------------------
63418
+ LocalStorageTest: test_detroy_attr
63419
+ ----------------------------------
63420
+  (0.1ms) SAVEPOINT active_record_1
63421
+ SQL (0.1ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "file.txt"], ["local_attach_content_type", "text/plain"], ["local_attach_size", 11], ["local_attach_updated_at", "2015-02-14 16:35:22.539650"], ["created_at", "2015-02-14 16:35:22.541074"], ["updated_at", "2015-02-14 16:35:22.541074"]]
63422
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63423
+  (0.0ms) SAVEPOINT active_record_1
63424
+ SQL (0.2ms) UPDATE "media" SET "local_attach_filename" = ?, "local_attach_content_type" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = ? [["local_attach_filename", nil], ["local_attach_content_type", nil], ["local_attach_size", nil], ["local_attach_updated_at", nil], ["updated_at", "2015-02-14 16:35:22.545914"], ["id", 1]]
63425
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63426
+  (0.1ms) rollback transaction
63427
+  (0.0ms) begin transaction
63428
+ -------------------------------
63429
+ LocalStorageTest: test_file_url
63430
+ -------------------------------
63431
+  (0.0ms) SAVEPOINT active_record_1
63432
+ SQL (0.1ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "file.txt"], ["local_attach_content_type", "text/plain"], ["local_attach_size", 11], ["local_attach_updated_at", "2015-02-14 16:35:22.553807"], ["created_at", "2015-02-14 16:35:22.554750"], ["updated_at", "2015-02-14 16:35:22.554750"]]
63433
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63434
+  (0.0ms) rollback transaction
63435
+  (0.1ms) begin transaction
63436
+ ---------------------------
63437
+ LocalStorageTest: test_crud
63438
+ ---------------------------
63439
+  (0.0ms) SAVEPOINT active_record_1
63440
+ SQL (0.1ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "file.txt"], ["local_attach_content_type", "text/plain"], ["local_attach_size", 11], ["local_attach_updated_at", "2015-02-14 16:35:22.559539"], ["created_at", "2015-02-14 16:35:22.560338"], ["updated_at", "2015-02-14 16:35:22.560338"]]
63441
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63442
+  (0.0ms) SAVEPOINT active_record_1
63443
+ SQL (0.1ms) UPDATE "media" SET "local_attach_filename" = ?, "local_attach_content_type" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = ? [["local_attach_filename", "180x150.gif"], ["local_attach_content_type", "image/gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2015-02-14 16:35:22.563303"], ["updated_at", "2015-02-14 16:35:22.563900"], ["id", 1]]
63444
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63445
+  (0.1ms) SAVEPOINT active_record_1
63446
+ SQL (0.1ms) DELETE FROM "media" WHERE "media"."id" = ? [["id", 1]]
63447
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63448
+  (0.1ms) rollback transaction
63449
+  (0.1ms) begin transaction
63450
+ --------------------------------------
63451
+ TasksTest: test_refersh_missing_styles
63452
+ --------------------------------------
63453
+  (0.2ms) SAVEPOINT active_record_1
63454
+ SQL (0.3ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "180x150.gif"], ["attach_content_type", "image/gif"], ["attach_size", 5461], ["attach_updated_at", "2015-02-14 16:35:22.617175"], ["created_at", "2015-02-14 16:35:22.619612"], ["updated_at", "2015-02-14 16:35:22.619612"]]
63455
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63456
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
63457
+ Missing styles regenerated successfully.
63458
+  (0.3ms) rollback transaction
63459
+  (0.3ms) begin transaction
63460
+ ----------------------------------
63461
+ TasksTest: test_refresh_all_styles
63462
+ ----------------------------------
63463
+  (0.1ms) SAVEPOINT active_record_1
63464
+ SQL (0.1ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "180x150.gif"], ["attach_content_type", "image/gif"], ["attach_size", 5461], ["attach_updated_at", "2015-02-14 16:35:23.701225"], ["created_at", "2015-02-14 16:35:23.702516"], ["updated_at", "2015-02-14 16:35:23.702516"]]
63465
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63466
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
63467
+ All styles regenerated successfully.
63468
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
63469
+ All styles regenerated successfully.
63470
+  (0.2ms) rollback transaction
63471
+  (0.1ms) begin transaction
63472
+ -----------------------------------------
63473
+ ValidatorsTest: test_size_range_validator
63474
+ -----------------------------------------
63475
+  (0.1ms) SAVEPOINT active_record_1
63476
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63477
+  (0.0ms) rollback transaction
63478
+  (0.0ms) begin transaction
63479
+ -------------------------------------------------
63480
+ ValidatorsTest: test_content_type_regex_validator
63481
+ -------------------------------------------------
63482
+  (0.1ms) SAVEPOINT active_record_1
63483
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63484
+  (0.0ms) rollback transaction
63485
+  (0.1ms) begin transaction
63486
+ -------------------------------------------
63487
+ ValidatorsTest: test_size_minimum_validator
63488
+ -------------------------------------------
63489
+  (0.1ms) SAVEPOINT active_record_1
63490
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63491
+  (0.0ms) rollback transaction
63492
+  (0.0ms) begin transaction
63493
+ -------------------------------------------
63494
+ ValidatorsTest: test_size_maximum_validator
63495
+ -------------------------------------------
63496
+  (0.1ms) SAVEPOINT active_record_1
63497
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63498
+  (0.0ms) rollback transaction
63499
+  (0.7ms) begin transaction
63500
+ ---------------------------------------
63501
+ ValidatorsTest: test_presence_validator
63502
+ ---------------------------------------
63503
+  (0.1ms) SAVEPOINT active_record_1
63504
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63505
+  (0.0ms) rollback transaction
63506
+  (0.0ms) begin transaction
63507
+ -----------------------------------------------------
63508
+ ValidatorsTest: test_content_type_inclusion_validator
63509
+ -----------------------------------------------------
63510
+  (0.1ms) SAVEPOINT active_record_1
63511
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63512
+  (0.0ms) rollback transaction
63513
+  (0.0ms) begin transaction
63514
+ --------------------------------------
63515
+ AttachmentTest: test_attachment_source
63516
+ --------------------------------------
63517
+  (0.1ms) SAVEPOINT active_record_1
63518
+ SQL (0.1ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "file.txt"], ["attach_content_type", "text/plain"], ["attach_size", 11], ["attach_updated_at", "2015-02-14 16:35:25.703794"], ["created_at", "2015-02-14 16:35:25.705013"], ["updated_at", "2015-02-14 16:35:25.705013"]]
63519
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63520
+  (0.0ms) SAVEPOINT active_record_1
63521
+ SQL (0.1ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "file.txt"], ["attach_content_type", "text/plain"], ["attach_size", 11], ["attach_updated_at", "2015-02-14 16:35:25.703794"], ["created_at", "2015-02-14 16:35:25.709387"], ["updated_at", "2015-02-14 16:35:25.709387"]]
63522
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63523
+  (0.1ms) rollback transaction
63524
+  (0.0ms) begin transaction
63525
+ -------------------------------
63526
+ AttachmentTest: test_uri_source
63527
+ -------------------------------
63528
+  (0.1ms) SAVEPOINT active_record_1
63529
+ SQL (0.1ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "file.txt"], ["attach_content_type", "application/xml"], ["attach_size", 302], ["attach_updated_at", "2015-02-14 16:35:26.076252"], ["created_at", "2015-02-14 16:35:26.077991"], ["updated_at", "2015-02-14 16:35:26.077991"]]
63530
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63531
+  (0.1ms) rollback transaction
63532
+  (0.3ms) CREATE TABLE "media" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attach_filename" varchar, "attach_content_type" varchar, "attach_size" integer, "attach_updated_at" datetime, "local_attach_filename" varchar, "local_attach_content_type" varchar, "local_attach_size" integer, "local_attach_updated_at" datetime, "s3_attach_filename" varchar, "s3_attach_content_type" varchar, "s3_attach_size" integer, "s3_attach_updated_at" datetime, "created_at" datetime, "updated_at" datetime) 
63533
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
63534
+  (0.1ms) select sqlite_version(*)
63535
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
63536
+  (0.0ms) SELECT version FROM "schema_migrations"
63537
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140808012639')
63538
+  (0.5ms) CREATE TABLE "media" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attach_filename" varchar, "attach_content_type" varchar, "attach_size" integer, "attach_updated_at" datetime, "local_attach_filename" varchar, "local_attach_content_type" varchar, "local_attach_size" integer, "local_attach_updated_at" datetime, "s3_attach_filename" varchar, "s3_attach_content_type" varchar, "s3_attach_size" integer, "s3_attach_updated_at" datetime, "created_at" datetime, "updated_at" datetime) 
63539
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
63540
+  (0.1ms) select sqlite_version(*)
63541
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
63542
+  (0.0ms) SELECT version FROM "schema_migrations"
63543
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140808012639')
63544
+  (0.1ms) begin transaction
63545
+ ------------------------------------------
63546
+ GeneratorsTest: test_initializer_generator
63547
+ ------------------------------------------
63548
+  (0.1ms) rollback transaction
63549
+  (0.0ms) begin transaction
63550
+ ------------------------------------
63551
+ MigrationTest: test_column_migration
63552
+ ------------------------------------
63553
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)
63554
+  (0.2ms) ALTER TABLE "pictures" ADD "image_filename" varchar
63555
+  (0.1ms) ALTER TABLE "pictures" ADD "image_content_type" varchar
63556
+  (0.1ms) ALTER TABLE "pictures" ADD "image_size" integer
63557
+  (0.2ms) ALTER TABLE "pictures" ADD "image_updated_at" datetime
63558
+  (0.1ms) SAVEPOINT active_record_1
63559
+  (0.6ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime)
63560
+  (0.1ms) SELECT * FROM "pictures"
63561
+  (0.1ms) DROP TABLE "pictures"
63562
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime) 
63563
+  (0.1ms) SELECT * FROM "apictures"
63564
+  (0.1ms) DROP TABLE "apictures"
63565
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63566
+  (0.0ms) SAVEPOINT active_record_1
63567
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime)
63568
+  (0.1ms) SELECT * FROM "pictures"
63569
+  (0.1ms) DROP TABLE "pictures"
63570
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime) 
63571
+  (0.1ms) SELECT * FROM "apictures"
63572
+  (0.2ms) DROP TABLE "apictures"
63573
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63574
+  (0.0ms) SAVEPOINT active_record_1
63575
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime)
63576
+  (0.0ms) SELECT * FROM "pictures"
63577
+  (0.1ms) DROP TABLE "pictures"
63578
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime) 
63579
+  (0.1ms) SELECT * FROM "apictures"
63580
+  (0.1ms) DROP TABLE "apictures"
63581
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63582
+  (0.0ms) SAVEPOINT active_record_1
63583
+  (0.2ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime)
63584
+  (0.1ms) SELECT * FROM "pictures"
63585
+  (0.1ms) DROP TABLE "pictures"
63586
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
63587
+  (0.0ms) SELECT * FROM "apictures"
63588
+  (0.1ms) DROP TABLE "apictures"
63589
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63590
+  (0.1ms) rollback transaction
63591
+  (0.0ms) begin transaction
63592
+ -----------------------------------
63593
+ MigrationTest: test_table_migration
63594
+ -----------------------------------
63595
+  (0.3ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime) 
63596
+  (0.1ms) DROP TABLE "pictures"
63597
+  (0.1ms) rollback transaction
63598
+  (0.0ms) begin transaction
63599
+ ----------------------------------
63600
+ ProcessorTest: test_contain_resize
63601
+ ----------------------------------
63602
+  (0.1ms) rollback transaction
63603
+  (0.0ms) begin transaction
63604
+ --------------------------------
63605
+ ProcessorTest: test_cover_resize
63606
+ --------------------------------
63607
+  (0.1ms) rollback transaction
63608
+  (0.1ms) begin transaction
63609
+ --------------------------------
63610
+ ProcessorTest: test_force_resize
63611
+ --------------------------------
63612
+  (0.1ms) rollback transaction
63613
+  (0.0ms) begin transaction
63614
+ --------------------------------
63615
+ LocalStorageTest: test_image_url
63616
+ --------------------------------
63617
+  (0.1ms) SAVEPOINT active_record_1
63618
+ SQL (0.2ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "180x150.gif"], ["local_attach_content_type", "image/gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2015-02-14 20:25:00.046945"], ["created_at", "2015-02-14 20:25:00.049980"], ["updated_at", "2015-02-14 20:25:00.049980"]]
63619
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63620
+  (0.1ms) rollback transaction
63621
+  (0.0ms) begin transaction
63622
+ ----------------------------------
63623
+ LocalStorageTest: test_detroy_attr
63624
+ ----------------------------------
63625
+  (0.1ms) SAVEPOINT active_record_1
63626
+ SQL (0.1ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "file.txt"], ["local_attach_content_type", "text/plain"], ["local_attach_size", 11], ["local_attach_updated_at", "2015-02-14 20:25:00.581290"], ["created_at", "2015-02-14 20:25:00.582808"], ["updated_at", "2015-02-14 20:25:00.582808"]]
63627
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63628
+  (0.0ms) SAVEPOINT active_record_1
63629
+ SQL (0.1ms) UPDATE "media" SET "local_attach_filename" = ?, "local_attach_content_type" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = ? [["local_attach_filename", nil], ["local_attach_content_type", nil], ["local_attach_size", nil], ["local_attach_updated_at", nil], ["updated_at", "2015-02-14 20:25:00.588034"], ["id", 1]]
63630
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63631
+  (0.1ms) rollback transaction
63632
+  (0.0ms) begin transaction
63633
+ -------------------------------
63634
+ LocalStorageTest: test_file_url
63635
+ -------------------------------
63636
+  (0.1ms) SAVEPOINT active_record_1
63637
+ SQL (0.2ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "file.txt"], ["local_attach_content_type", "text/plain"], ["local_attach_size", 11], ["local_attach_updated_at", "2015-02-14 20:25:00.594680"], ["created_at", "2015-02-14 20:25:00.595461"], ["updated_at", "2015-02-14 20:25:00.595461"]]
63638
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63639
+  (0.1ms) rollback transaction
63640
+  (0.0ms) begin transaction
63641
+ ---------------------------
63642
+ LocalStorageTest: test_crud
63643
+ ---------------------------
63644
+  (0.0ms) SAVEPOINT active_record_1
63645
+ SQL (0.1ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "file.txt"], ["local_attach_content_type", "text/plain"], ["local_attach_size", 11], ["local_attach_updated_at", "2015-02-14 20:25:00.600762"], ["created_at", "2015-02-14 20:25:00.601540"], ["updated_at", "2015-02-14 20:25:00.601540"]]
63646
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63647
+  (0.1ms) SAVEPOINT active_record_1
63648
+ SQL (0.1ms) UPDATE "media" SET "local_attach_filename" = ?, "local_attach_content_type" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = ? [["local_attach_filename", "180x150.gif"], ["local_attach_content_type", "image/gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2015-02-14 20:25:00.604713"], ["updated_at", "2015-02-14 20:25:00.605381"], ["id", 1]]
63649
+  (0.2ms) RELEASE SAVEPOINT active_record_1
63650
+  (0.1ms) SAVEPOINT active_record_1
63651
+ SQL (0.3ms) DELETE FROM "media" WHERE "media"."id" = ? [["id", 1]]
63652
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63653
+  (0.1ms) rollback transaction
63654
+  (0.1ms) begin transaction
63655
+ ----------------------------------
63656
+ TasksTest: test_refresh_all_styles
63657
+ ----------------------------------
63658
+  (0.1ms) SAVEPOINT active_record_1
63659
+ SQL (0.2ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "180x150.gif"], ["attach_content_type", "image/gif"], ["attach_size", 5461], ["attach_updated_at", "2015-02-14 20:25:00.665205"], ["created_at", "2015-02-14 20:25:00.666556"], ["updated_at", "2015-02-14 20:25:00.666556"]]
63660
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63661
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
63662
+ All styles regenerated successfully.
63663
+  (0.2ms) rollback transaction
63664
+  (0.1ms) begin transaction
63665
+ --------------------------------------
63666
+ TasksTest: test_refersh_missing_styles
63667
+ --------------------------------------
63668
+  (0.1ms) SAVEPOINT active_record_1
63669
+ SQL (0.2ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "180x150.gif"], ["attach_content_type", "image/gif"], ["attach_size", 5461], ["attach_updated_at", "2015-02-14 20:25:02.530076"], ["created_at", "2015-02-14 20:25:02.531387"], ["updated_at", "2015-02-14 20:25:02.531387"]]
63670
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63671
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
63672
+ Missing styles regenerated successfully.
63673
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
63674
+ Missing styles regenerated successfully.
63675
+  (0.2ms) rollback transaction
63676
+  (0.0ms) begin transaction
63677
+ --------------------------------------
63678
+ AttachmentTest: test_attachment_source
63679
+ --------------------------------------
63680
+  (0.1ms) SAVEPOINT active_record_1
63681
+ SQL (0.1ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "file.txt"], ["attach_content_type", "text/plain"], ["attach_size", 11], ["attach_updated_at", "2015-02-14 20:25:03.608901"], ["created_at", "2015-02-14 20:25:03.610063"], ["updated_at", "2015-02-14 20:25:03.610063"]]
63682
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63683
+  (0.0ms) SAVEPOINT active_record_1
63684
+ SQL (0.1ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "file.txt"], ["attach_content_type", "text/plain"], ["attach_size", 11], ["attach_updated_at", "2015-02-14 20:25:03.608901"], ["created_at", "2015-02-14 20:25:03.613474"], ["updated_at", "2015-02-14 20:25:03.613474"]]
63685
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63686
+  (0.1ms) rollback transaction
63687
+  (0.0ms) begin transaction
63688
+ -------------------------------
63689
+ AttachmentTest: test_uri_source
63690
+ -------------------------------
63691
+  (0.1ms) SAVEPOINT active_record_1
63692
+ SQL (0.1ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "file.txt"], ["attach_content_type", "application/xml"], ["attach_size", 290], ["attach_updated_at", "2015-02-14 20:25:03.981720"], ["created_at", "2015-02-14 20:25:03.984307"], ["updated_at", "2015-02-14 20:25:03.984307"]]
63693
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63694
+  (0.1ms) rollback transaction
63695
+  (0.1ms) begin transaction
63696
+ -------------------------------------------
63697
+ ValidatorsTest: test_size_minimum_validator
63698
+ -------------------------------------------
63699
+  (0.1ms) SAVEPOINT active_record_1
63700
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63701
+  (0.0ms) rollback transaction
63702
+  (0.0ms) begin transaction
63703
+ -----------------------------------------------------
63704
+ ValidatorsTest: test_content_type_inclusion_validator
63705
+ -----------------------------------------------------
63706
+  (0.1ms) SAVEPOINT active_record_1
63707
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63708
+  (0.0ms) rollback transaction
63709
+  (0.0ms) begin transaction
63710
+ -------------------------------------------------
63711
+ ValidatorsTest: test_content_type_regex_validator
63712
+ -------------------------------------------------
63713
+  (0.1ms) SAVEPOINT active_record_1
63714
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63715
+  (0.0ms) rollback transaction
63716
+  (0.0ms) begin transaction
63717
+ -------------------------------------------
63718
+ ValidatorsTest: test_size_maximum_validator
63719
+ -------------------------------------------
63720
+  (0.1ms) SAVEPOINT active_record_1
63721
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63722
+  (0.0ms) rollback transaction
63723
+  (0.0ms) begin transaction
63724
+ ---------------------------------------
63725
+ ValidatorsTest: test_presence_validator
63726
+ ---------------------------------------
63727
+  (0.1ms) SAVEPOINT active_record_1
63728
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63729
+  (0.1ms) rollback transaction
63730
+  (0.1ms) begin transaction
63731
+ -----------------------------------------
63732
+ ValidatorsTest: test_size_range_validator
63733
+ -----------------------------------------
63734
+  (0.1ms) SAVEPOINT active_record_1
63735
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63736
+  (0.1ms) rollback transaction
63737
+  (0.4ms) CREATE TABLE "media" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attach_filename" varchar, "attach_content_type" varchar, "attach_size" integer, "attach_updated_at" datetime, "local_attach_filename" varchar, "local_attach_content_type" varchar, "local_attach_size" integer, "local_attach_updated_at" datetime, "s3_attach_filename" varchar, "s3_attach_content_type" varchar, "s3_attach_size" integer, "s3_attach_updated_at" datetime, "created_at" datetime, "updated_at" datetime) 
63738
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
63739
+  (0.1ms) select sqlite_version(*)
63740
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
63741
+  (0.0ms) SELECT version FROM "schema_migrations"
63742
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140808012639')
63743
+  (0.5ms) CREATE TABLE "media" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attach_filename" varchar, "attach_content_type" varchar, "attach_size" integer, "attach_updated_at" datetime, "local_attach_filename" varchar, "local_attach_content_type" varchar, "local_attach_size" integer, "local_attach_updated_at" datetime, "s3_attach_filename" varchar, "s3_attach_content_type" varchar, "s3_attach_size" integer, "s3_attach_updated_at" datetime, "created_at" datetime, "updated_at" datetime) 
63744
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
63745
+  (0.1ms) select sqlite_version(*)
63746
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
63747
+  (0.1ms) SELECT version FROM "schema_migrations"
63748
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140808012639')
63749
+  (0.1ms) begin transaction
63750
+ ---------------------------
63751
+ LocalStorageTest: test_crud
63752
+ ---------------------------
63753
+  (0.1ms) SAVEPOINT active_record_1
63754
+ SQL (0.2ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "file.txt"], ["local_attach_content_type", "text/plain"], ["local_attach_size", 11], ["local_attach_updated_at", "2015-02-14 20:31:01.327754"], ["created_at", "2015-02-14 20:31:01.330916"], ["updated_at", "2015-02-14 20:31:01.330916"]]
63755
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63756
+  (0.0ms) SAVEPOINT active_record_1
63757
+ SQL (0.1ms) UPDATE "media" SET "local_attach_filename" = ?, "local_attach_content_type" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = ? [["local_attach_filename", "180x150.gif"], ["local_attach_content_type", "image/gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2015-02-14 20:31:01.460067"], ["updated_at", "2015-02-14 20:31:01.460785"], ["id", 1]]
63758
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63759
+  (0.0ms) SAVEPOINT active_record_1
63760
+ SQL (0.1ms) DELETE FROM "media" WHERE "media"."id" = ? [["id", 1]]
63761
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63762
+  (0.1ms) rollback transaction
63763
+  (0.1ms) begin transaction
63764
+ -------------------------------
63765
+ LocalStorageTest: test_file_url
63766
+ -------------------------------
63767
+  (0.4ms) SAVEPOINT active_record_1
63768
+ SQL (0.5ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "file.txt"], ["local_attach_content_type", "text/plain"], ["local_attach_size", 11], ["local_attach_updated_at", "2015-02-14 20:31:01.883147"], ["created_at", "2015-02-14 20:31:01.884316"], ["updated_at", "2015-02-14 20:31:01.884316"]]
63769
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63770
+  (0.1ms) rollback transaction
63771
+  (0.1ms) begin transaction
63772
+ --------------------------------
63773
+ LocalStorageTest: test_image_url
63774
+ --------------------------------
63775
+  (0.1ms) SAVEPOINT active_record_1
63776
+ SQL (0.1ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "180x150.gif"], ["local_attach_content_type", "image/gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2015-02-14 20:31:01.890871"], ["created_at", "2015-02-14 20:31:01.891988"], ["updated_at", "2015-02-14 20:31:01.891988"]]
63777
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63778
+  (0.1ms) rollback transaction
63779
+  (0.1ms) begin transaction
63780
+ ----------------------------------
63781
+ LocalStorageTest: test_detroy_attr
63782
+ ----------------------------------
63783
+  (0.1ms) SAVEPOINT active_record_1
63784
+ SQL (0.1ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "file.txt"], ["local_attach_content_type", "text/plain"], ["local_attach_size", 11], ["local_attach_updated_at", "2015-02-14 20:31:02.323161"], ["created_at", "2015-02-14 20:31:02.325118"], ["updated_at", "2015-02-14 20:31:02.325118"]]
63785
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63786
+  (0.0ms) SAVEPOINT active_record_1
63787
+ SQL (0.1ms) UPDATE "media" SET "local_attach_filename" = ?, "local_attach_content_type" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = ? [["local_attach_filename", nil], ["local_attach_content_type", nil], ["local_attach_size", nil], ["local_attach_updated_at", nil], ["updated_at", "2015-02-14 20:31:02.330892"], ["id", 1]]
63788
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63789
+  (0.1ms) rollback transaction
63790
+  (0.1ms) begin transaction
63791
+ -------------------------------
63792
+ AttachmentTest: test_uri_source
63793
+ -------------------------------
63794
+  (0.1ms) SAVEPOINT active_record_1
63795
+ SQL (0.2ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "file.txt"], ["attach_content_type", "application/xml"], ["attach_size", 302], ["attach_updated_at", "2015-02-14 20:31:02.715621"], ["created_at", "2015-02-14 20:31:02.717321"], ["updated_at", "2015-02-14 20:31:02.717321"]]
63796
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63797
+  (0.1ms) rollback transaction
63798
+  (0.0ms) begin transaction
63799
+ --------------------------------------
63800
+ AttachmentTest: test_attachment_source
63801
+ --------------------------------------
63802
+  (0.0ms) SAVEPOINT active_record_1
63803
+ SQL (0.1ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "file.txt"], ["attach_content_type", "text/plain"], ["attach_size", 11], ["attach_updated_at", "2015-02-14 20:31:02.722442"], ["created_at", "2015-02-14 20:31:02.723204"], ["updated_at", "2015-02-14 20:31:02.723204"]]
63804
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63805
+  (0.0ms) SAVEPOINT active_record_1
63806
+ SQL (0.1ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "file.txt"], ["attach_content_type", "text/plain"], ["attach_size", 11], ["attach_updated_at", "2015-02-14 20:31:02.722442"], ["created_at", "2015-02-14 20:31:02.727272"], ["updated_at", "2015-02-14 20:31:02.727272"]]
63807
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63808
+  (0.1ms) rollback transaction
63809
+  (0.0ms) begin transaction
63810
+ --------------------------------
63811
+ ProcessorTest: test_cover_resize
63812
+ --------------------------------
63813
+  (0.1ms) rollback transaction
63814
+  (0.1ms) begin transaction
63815
+ ----------------------------------
63816
+ ProcessorTest: test_contain_resize
63817
+ ----------------------------------
63818
+  (0.1ms) rollback transaction
63819
+  (0.1ms) begin transaction
63820
+ --------------------------------
63821
+ ProcessorTest: test_force_resize
63822
+ --------------------------------
63823
+  (0.1ms) rollback transaction
63824
+  (0.1ms) begin transaction
63825
+ --------------------------------------
63826
+ TasksTest: test_refersh_missing_styles
63827
+ --------------------------------------
63828
+  (0.1ms) SAVEPOINT active_record_1
63829
+ SQL (0.1ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "180x150.gif"], ["attach_content_type", "image/gif"], ["attach_size", 5461], ["attach_updated_at", "2015-02-14 20:31:03.087516"], ["created_at", "2015-02-14 20:31:03.088772"], ["updated_at", "2015-02-14 20:31:03.088772"]]
63830
+  (0.2ms) RELEASE SAVEPOINT active_record_1
63831
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
63832
+ Missing styles regenerated successfully.
63833
+  (0.2ms) rollback transaction
63834
+  (0.1ms) begin transaction
63835
+ ----------------------------------
63836
+ TasksTest: test_refresh_all_styles
63837
+ ----------------------------------
63838
+  (0.1ms) SAVEPOINT active_record_1
63839
+ SQL (0.1ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "180x150.gif"], ["attach_content_type", "image/gif"], ["attach_size", 5461], ["attach_updated_at", "2015-02-14 20:31:04.570271"], ["created_at", "2015-02-14 20:31:04.571540"], ["updated_at", "2015-02-14 20:31:04.571540"]]
63840
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63841
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
63842
+ All styles regenerated successfully.
63843
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
63844
+ All styles regenerated successfully.
63845
+  (0.2ms) rollback transaction
63846
+  (0.1ms) begin transaction
63847
+ -------------------------------------------
63848
+ ValidatorsTest: test_size_minimum_validator
63849
+ -------------------------------------------
63850
+  (0.1ms) SAVEPOINT active_record_1
63851
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63852
+  (0.0ms) rollback transaction
63853
+  (0.1ms) begin transaction
63854
+ -------------------------------------------
63855
+ ValidatorsTest: test_size_maximum_validator
63856
+ -------------------------------------------
63857
+  (0.1ms) SAVEPOINT active_record_1
63858
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63859
+  (0.0ms) rollback transaction
63860
+  (0.1ms) begin transaction
63861
+ -----------------------------------------------------
63862
+ ValidatorsTest: test_content_type_inclusion_validator
63863
+ -----------------------------------------------------
63864
+  (0.1ms) SAVEPOINT active_record_1
63865
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63866
+  (0.0ms) rollback transaction
63867
+  (0.0ms) begin transaction
63868
+ -----------------------------------------
63869
+ ValidatorsTest: test_size_range_validator
63870
+ -----------------------------------------
63871
+  (0.1ms) SAVEPOINT active_record_1
63872
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63873
+  (0.0ms) rollback transaction
63874
+  (0.1ms) begin transaction
63875
+ -------------------------------------------------
63876
+ ValidatorsTest: test_content_type_regex_validator
63877
+ -------------------------------------------------
63878
+  (0.1ms) SAVEPOINT active_record_1
63879
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63880
+  (0.0ms) rollback transaction
63881
+  (0.0ms) begin transaction
63882
+ ---------------------------------------
63883
+ ValidatorsTest: test_presence_validator
63884
+ ---------------------------------------
63885
+  (0.1ms) SAVEPOINT active_record_1
63886
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63887
+  (0.0ms) rollback transaction
63888
+  (0.0ms) begin transaction
63889
+ ------------------------------------
63890
+ MigrationTest: test_column_migration
63891
+ ------------------------------------
63892
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
63893
+  (0.2ms) ALTER TABLE "pictures" ADD "image_filename" varchar
63894
+  (0.1ms) ALTER TABLE "pictures" ADD "image_content_type" varchar
63895
+  (0.1ms) ALTER TABLE "pictures" ADD "image_size" integer
63896
+  (0.2ms) ALTER TABLE "pictures" ADD "image_updated_at" datetime
63897
+  (0.1ms) SAVEPOINT active_record_1
63898
+  (0.9ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime) 
63899
+  (0.1ms) SELECT * FROM "pictures"
63900
+  (0.2ms) DROP TABLE "pictures"
63901
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime)
63902
+  (0.1ms) SELECT * FROM "apictures"
63903
+  (0.2ms) DROP TABLE "apictures"
63904
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63905
+  (0.0ms) SAVEPOINT active_record_1
63906
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime) 
63907
+  (0.1ms) SELECT * FROM "pictures"
63908
+  (0.1ms) DROP TABLE "pictures"
63909
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime)
63910
+  (0.1ms) SELECT * FROM "apictures"
63911
+  (0.2ms) DROP TABLE "apictures"
63912
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63913
+  (0.0ms) SAVEPOINT active_record_1
63914
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime) 
63915
+  (0.0ms) SELECT * FROM "pictures"
63916
+  (0.1ms) DROP TABLE "pictures"
63917
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime)
63918
+  (0.0ms) SELECT * FROM "apictures"
63919
+  (0.2ms) DROP TABLE "apictures"
63920
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63921
+  (0.0ms) SAVEPOINT active_record_1
63922
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime) 
63923
+  (0.0ms) SELECT * FROM "pictures"
63924
+  (0.1ms) DROP TABLE "pictures"
63925
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)
63926
+  (0.1ms) SELECT * FROM "apictures"
63927
+  (0.1ms) DROP TABLE "apictures"
63928
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63929
+  (0.1ms) rollback transaction
63930
+  (0.0ms) begin transaction
63931
+ -----------------------------------
63932
+ MigrationTest: test_table_migration
63933
+ -----------------------------------
63934
+  (0.3ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime)
63935
+  (0.1ms) DROP TABLE "pictures"
63936
+  (0.1ms) rollback transaction
63937
+  (0.1ms) begin transaction
63938
+ ------------------------------------------
63939
+ GeneratorsTest: test_initializer_generator
63940
+ ------------------------------------------
63941
+  (0.0ms) rollback transaction
63942
+  (0.4ms) CREATE TABLE "media" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attach_filename" varchar, "attach_content_type" varchar, "attach_size" integer, "attach_updated_at" datetime, "local_attach_filename" varchar, "local_attach_content_type" varchar, "local_attach_size" integer, "local_attach_updated_at" datetime, "s3_attach_filename" varchar, "s3_attach_content_type" varchar, "s3_attach_size" integer, "s3_attach_updated_at" datetime, "created_at" datetime, "updated_at" datetime) 
63943
+  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
63944
+  (0.1ms) select sqlite_version(*)
63945
+  (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
63946
+  (0.1ms) SELECT version FROM "schema_migrations"
63947
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140808012639')
63948
+  (0.5ms) CREATE TABLE "media" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attach_filename" varchar, "attach_content_type" varchar, "attach_size" integer, "attach_updated_at" datetime, "local_attach_filename" varchar, "local_attach_content_type" varchar, "local_attach_size" integer, "local_attach_updated_at" datetime, "s3_attach_filename" varchar, "s3_attach_content_type" varchar, "s3_attach_size" integer, "s3_attach_updated_at" datetime, "created_at" datetime, "updated_at" datetime) 
63949
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
63950
+  (0.1ms) select sqlite_version(*)
63951
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
63952
+  (0.0ms) SELECT version FROM "schema_migrations"
63953
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140808012639')
63954
+  (0.2ms) begin transaction
63955
+ ------------------------------------------
63956
+ GeneratorsTest: test_initializer_generator
63957
+ ------------------------------------------
63958
+  (0.1ms) rollback transaction
63959
+  (0.1ms) begin transaction
63960
+ -----------------------------------------------------
63961
+ ValidatorsTest: test_content_type_inclusion_validator
63962
+ -----------------------------------------------------
63963
+  (0.1ms) SAVEPOINT active_record_1
63964
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63965
+  (0.1ms) rollback transaction
63966
+  (0.1ms) begin transaction
63967
+ ---------------------------------------
63968
+ ValidatorsTest: test_presence_validator
63969
+ ---------------------------------------
63970
+  (0.1ms) SAVEPOINT active_record_1
63971
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63972
+  (0.0ms) rollback transaction
63973
+  (0.0ms) begin transaction
63974
+ -------------------------------------------------
63975
+ ValidatorsTest: test_content_type_regex_validator
63976
+ -------------------------------------------------
63977
+  (0.1ms) SAVEPOINT active_record_1
63978
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63979
+  (0.0ms) rollback transaction
63980
+  (0.0ms) begin transaction
63981
+ -------------------------------------------
63982
+ ValidatorsTest: test_size_minimum_validator
63983
+ -------------------------------------------
63984
+  (0.1ms) SAVEPOINT active_record_1
63985
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63986
+  (0.0ms) rollback transaction
63987
+  (0.1ms) begin transaction
63988
+ -------------------------------------------
63989
+ ValidatorsTest: test_size_maximum_validator
63990
+ -------------------------------------------
63991
+  (0.1ms) SAVEPOINT active_record_1
63992
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63993
+  (0.1ms) rollback transaction
63994
+  (0.1ms) begin transaction
63995
+ -----------------------------------------
63996
+ ValidatorsTest: test_size_range_validator
63997
+ -----------------------------------------
63998
+  (0.1ms) SAVEPOINT active_record_1
63999
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64000
+  (0.0ms) rollback transaction
64001
+  (0.1ms) begin transaction
64002
+ ----------------------------
64003
+ S3StorageTest: test_file_url
64004
+ ----------------------------
64005
+  (0.0ms) SAVEPOINT active_record_1
64006
+ SQL (0.2ms) INSERT INTO "media" ("s3_attach_filename", "s3_attach_content_type", "s3_attach_size", "s3_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["s3_attach_filename", "file.txt"], ["s3_attach_content_type", "text/plain"], ["s3_attach_size", 11], ["s3_attach_updated_at", "2015-02-14 20:56:20.678267"], ["created_at", "2015-02-14 20:56:20.679087"], ["updated_at", "2015-02-14 20:56:20.679087"]]
64007
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64008
+  (0.2ms) rollback transaction
64009
+  (0.1ms) begin transaction
64010
+ -----------------------------
64011
+ S3StorageTest: test_image_url
64012
+ -----------------------------
64013
+  (0.1ms) SAVEPOINT active_record_1
64014
+ SQL (0.2ms) INSERT INTO "media" ("s3_attach_filename", "s3_attach_content_type", "s3_attach_size", "s3_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["s3_attach_filename", "180x150.gif"], ["s3_attach_content_type", "image/gif"], ["s3_attach_size", 5461], ["s3_attach_updated_at", "2015-02-14 20:56:22.090010"], ["created_at", "2015-02-14 20:56:22.091073"], ["updated_at", "2015-02-14 20:56:22.091073"]]
64015
+  (0.3ms) RELEASE SAVEPOINT active_record_1
64016
+  (0.2ms) rollback transaction
64017
+  (0.1ms) begin transaction
64018
+ -------------------------------
64019
+ S3StorageTest: test_detroy_attr
64020
+ -------------------------------
64021
+  (0.1ms) SAVEPOINT active_record_1
64022
+ SQL (0.1ms) INSERT INTO "media" ("s3_attach_filename", "s3_attach_content_type", "s3_attach_size", "s3_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["s3_attach_filename", "file.txt"], ["s3_attach_content_type", "text/plain"], ["s3_attach_size", 11], ["s3_attach_updated_at", "2015-02-14 20:56:25.748126"], ["created_at", "2015-02-14 20:56:25.749558"], ["updated_at", "2015-02-14 20:56:25.749558"]]
64023
+  (0.2ms) RELEASE SAVEPOINT active_record_1
64024
+  (0.2ms) rollback transaction
64025
+  (0.1ms) begin transaction
64026
+ ---------------------------
64027
+ S3StorageTest: test_storage
64028
+ ---------------------------
64029
+  (0.1ms) SAVEPOINT active_record_1
64030
+ SQL (0.1ms) INSERT INTO "media" ("s3_attach_filename", "s3_attach_content_type", "s3_attach_size", "s3_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["s3_attach_filename", "file.txt"], ["s3_attach_content_type", "text/plain"], ["s3_attach_size", 11], ["s3_attach_updated_at", "2015-02-14 20:56:26.990814"], ["created_at", "2015-02-14 20:56:26.992022"], ["updated_at", "2015-02-14 20:56:26.992022"]]
64031
+  (0.2ms) RELEASE SAVEPOINT active_record_1
64032
+  (0.1ms) rollback transaction
64033
+  (0.1ms) begin transaction
64034
+ -------------------------------
64035
+ LocalStorageTest: test_file_url
64036
+ -------------------------------
64037
+  (0.1ms) SAVEPOINT active_record_1
64038
+ SQL (0.1ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "file.txt"], ["local_attach_content_type", "text/plain"], ["local_attach_size", 11], ["local_attach_updated_at", "2015-02-14 20:56:27.877462"], ["created_at", "2015-02-14 20:56:27.878260"], ["updated_at", "2015-02-14 20:56:27.878260"]]
64039
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64040
+  (0.1ms) rollback transaction
64041
+  (0.1ms) begin transaction
64042
+ --------------------------------
64043
+ LocalStorageTest: test_image_url
64044
+ --------------------------------
64045
+  (0.0ms) SAVEPOINT active_record_1
64046
+ SQL (0.0ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "180x150.gif"], ["local_attach_content_type", "image/gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2015-02-14 20:56:27.882000"], ["created_at", "2015-02-14 20:56:27.882644"], ["updated_at", "2015-02-14 20:56:27.882644"]]
64047
+  (0.2ms) RELEASE SAVEPOINT active_record_1
64048
+  (0.1ms) rollback transaction
64049
+  (0.0ms) begin transaction
64050
+ ----------------------------------
64051
+ LocalStorageTest: test_detroy_attr
64052
+ ----------------------------------
64053
+  (0.1ms) SAVEPOINT active_record_1
64054
+ SQL (0.1ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "file.txt"], ["local_attach_content_type", "text/plain"], ["local_attach_size", 11], ["local_attach_updated_at", "2015-02-14 20:56:27.901885"], ["created_at", "2015-02-14 20:56:27.903288"], ["updated_at", "2015-02-14 20:56:27.903288"]]
64055
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64056
+  (0.1ms) SAVEPOINT active_record_1
64057
+ SQL (0.2ms) UPDATE "media" SET "local_attach_filename" = ?, "local_attach_content_type" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = ? [["local_attach_filename", nil], ["local_attach_content_type", nil], ["local_attach_size", nil], ["local_attach_updated_at", nil], ["updated_at", "2015-02-14 20:56:27.907709"], ["id", 1]]
64058
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64059
+  (0.1ms) rollback transaction
64060
+  (0.0ms) begin transaction
64061
+ ---------------------------
64062
+ LocalStorageTest: test_crud
64063
+ ---------------------------
64064
+  (0.0ms) SAVEPOINT active_record_1
64065
+ SQL (0.1ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "file.txt"], ["local_attach_content_type", "text/plain"], ["local_attach_size", 11], ["local_attach_updated_at", "2015-02-14 20:56:27.914300"], ["created_at", "2015-02-14 20:56:27.915082"], ["updated_at", "2015-02-14 20:56:27.915082"]]
64066
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64067
+  (0.1ms) SAVEPOINT active_record_1
64068
+ SQL (0.1ms) UPDATE "media" SET "local_attach_filename" = ?, "local_attach_content_type" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = ? [["local_attach_filename", "180x150.gif"], ["local_attach_content_type", "image/gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2015-02-14 20:56:27.917938"], ["updated_at", "2015-02-14 20:56:27.918490"], ["id", 1]]
64069
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64070
+  (0.0ms) SAVEPOINT active_record_1
64071
+ SQL (0.1ms) DELETE FROM "media" WHERE "media"."id" = ? [["id", 1]]
64072
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64073
+  (0.1ms) rollback transaction
64074
+  (0.0ms) begin transaction
64075
+ --------------------------------------
64076
+ AttachmentTest: test_attachment_source
64077
+ --------------------------------------
64078
+  (0.0ms) SAVEPOINT active_record_1
64079
+ SQL (0.1ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "file.txt"], ["attach_content_type", "text/plain"], ["attach_size", 11], ["attach_updated_at", "2015-02-14 20:56:27.936455"], ["created_at", "2015-02-14 20:56:27.937253"], ["updated_at", "2015-02-14 20:56:27.937253"]]
64080
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64081
+  (0.1ms) SAVEPOINT active_record_1
64082
+ SQL (0.1ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "file.txt"], ["attach_content_type", "text/plain"], ["attach_size", 11], ["attach_updated_at", "2015-02-14 20:56:27.936455"], ["created_at", "2015-02-14 20:56:27.940858"], ["updated_at", "2015-02-14 20:56:27.940858"]]
64083
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64084
+  (0.1ms) rollback transaction
64085
+  (0.1ms) begin transaction
64086
+ -------------------------------
64087
+ AttachmentTest: test_uri_source
64088
+ -------------------------------
64089
+  (0.1ms) SAVEPOINT active_record_1
64090
+ SQL (0.2ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "file.txt"], ["attach_content_type", "application/xml"], ["attach_size", 290], ["attach_updated_at", "2015-02-14 20:56:28.298372"], ["created_at", "2015-02-14 20:56:28.300140"], ["updated_at", "2015-02-14 20:56:28.300140"]]
64091
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64092
+  (0.2ms) rollback transaction
64093
+  (0.1ms) begin transaction
64094
+ ----------------------------------
64095
+ ProcessorTest: test_contain_resize
64096
+ ----------------------------------
64097
+  (0.1ms) rollback transaction
64098
+  (0.0ms) begin transaction
64099
+ --------------------------------
64100
+ ProcessorTest: test_cover_resize
64101
+ --------------------------------
64102
+  (0.3ms) rollback transaction
64103
+  (0.0ms) begin transaction
64104
+ --------------------------------
64105
+ ProcessorTest: test_force_resize
64106
+ --------------------------------
64107
+  (0.1ms) rollback transaction
64108
+  (0.0ms) begin transaction
64109
+ -----------------------------------
64110
+ MigrationTest: test_table_migration
64111
+ -----------------------------------
64112
+  (0.3ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime)
64113
+  (0.1ms) DROP TABLE "pictures"
64114
+  (0.1ms) rollback transaction
64115
+  (0.0ms) begin transaction
64116
+ ------------------------------------
64117
+ MigrationTest: test_column_migration
64118
+ ------------------------------------
64119
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)
64120
+  (0.1ms) ALTER TABLE "pictures" ADD "image_filename" varchar
64121
+  (0.1ms) ALTER TABLE "pictures" ADD "image_content_type" varchar
64122
+  (0.1ms) ALTER TABLE "pictures" ADD "image_size" integer
64123
+  (0.1ms) ALTER TABLE "pictures" ADD "image_updated_at" datetime
64124
+  (0.2ms) SAVEPOINT active_record_1
64125
+  (1.2ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime)
64126
+  (0.1ms) SELECT * FROM "pictures"
64127
+  (0.3ms) DROP TABLE "pictures"
64128
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime) 
64129
+  (0.1ms) SELECT * FROM "apictures"
64130
+  (0.2ms) DROP TABLE "apictures"
64131
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64132
+  (0.1ms) SAVEPOINT active_record_1
64133
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime)
64134
+  (0.0ms) SELECT * FROM "pictures"
64135
+  (0.1ms) DROP TABLE "pictures"
64136
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime) 
64137
+  (0.1ms) SELECT * FROM "apictures"
64138
+  (0.2ms) DROP TABLE "apictures"
64139
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64140
+  (0.1ms) SAVEPOINT active_record_1
64141
+  (0.2ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime)
64142
+  (0.1ms) SELECT * FROM "pictures"
64143
+  (0.1ms) DROP TABLE "pictures"
64144
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime) 
64145
+  (0.0ms) SELECT * FROM "apictures"
64146
+  (0.1ms) DROP TABLE "apictures"
64147
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64148
+  (0.0ms) SAVEPOINT active_record_1
64149
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime)
64150
+  (0.0ms) SELECT * FROM "pictures"
64151
+  (0.1ms) DROP TABLE "pictures"
64152
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
64153
+  (0.0ms) SELECT * FROM "apictures"
64154
+  (0.1ms) DROP TABLE "apictures"
64155
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64156
+  (0.1ms) rollback transaction
64157
+  (0.0ms) begin transaction
64158
+ ----------------------------------
64159
+ TasksTest: test_refresh_all_styles
64160
+ ----------------------------------
64161
+  (0.1ms) SAVEPOINT active_record_1
64162
+ SQL (0.3ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "180x150.gif"], ["attach_content_type", "image/gif"], ["attach_size", 5461], ["attach_updated_at", "2015-02-14 20:56:28.656542"], ["created_at", "2015-02-14 20:56:28.657692"], ["updated_at", "2015-02-14 20:56:28.657692"]]
64163
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64164
+ Medium Load (0.3ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
64165
+ All styles regenerated successfully.
64166
+  (0.3ms) rollback transaction
64167
+  (0.1ms) begin transaction
64168
+ --------------------------------------
64169
+ TasksTest: test_refersh_missing_styles
64170
+ --------------------------------------
64171
+  (0.1ms) SAVEPOINT active_record_1
64172
+ SQL (0.1ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "180x150.gif"], ["attach_content_type", "image/gif"], ["attach_size", 5461], ["attach_updated_at", "2015-02-14 20:56:30.553484"], ["created_at", "2015-02-14 20:56:30.554705"], ["updated_at", "2015-02-14 20:56:30.554705"]]
64173
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64174
+ Medium Load (0.3ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
64175
+ Missing styles regenerated successfully.
64176
+ Medium Load (0.3ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
64177
+ Missing styles regenerated successfully.
64178
+  (0.2ms) rollback transaction
64179
+  (0.3ms) CREATE TABLE "media" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attach_filename" varchar, "attach_content_type" varchar, "attach_size" integer, "attach_updated_at" datetime, "local_attach_filename" varchar, "local_attach_content_type" varchar, "local_attach_size" integer, "local_attach_updated_at" datetime, "s3_attach_filename" varchar, "s3_attach_content_type" varchar, "s3_attach_size" integer, "s3_attach_updated_at" datetime, "created_at" datetime, "updated_at" datetime) 
64180
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
64181
+  (0.1ms) select sqlite_version(*)
64182
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
64183
+  (0.0ms) SELECT version FROM "schema_migrations"
64184
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140808012639')
64185
+  (0.6ms) CREATE TABLE "media" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attach_filename" varchar, "attach_content_type" varchar, "attach_size" integer, "attach_updated_at" datetime, "local_attach_filename" varchar, "local_attach_content_type" varchar, "local_attach_size" integer, "local_attach_updated_at" datetime, "s3_attach_filename" varchar, "s3_attach_content_type" varchar, "s3_attach_size" integer, "s3_attach_updated_at" datetime, "created_at" datetime, "updated_at" datetime) 
64186
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
64187
+  (0.1ms) select sqlite_version(*)
64188
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
64189
+  (0.1ms) SELECT version FROM "schema_migrations"
64190
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140808012639')
64191
+  (0.1ms) begin transaction
64192
+ ------------------------------------------
64193
+ GeneratorsTest: test_initializer_generator
64194
+ ------------------------------------------
64195
+  (0.1ms) rollback transaction
64196
+  (0.0ms) begin transaction
64197
+ --------------------------------------
64198
+ TasksTest: test_refersh_missing_styles
64199
+ --------------------------------------
64200
+  (0.2ms) SAVEPOINT active_record_1
64201
+ SQL (0.2ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "180x150.gif"], ["attach_content_type", "image/gif"], ["attach_size", 5461], ["attach_updated_at", "2015-02-14 20:57:00.351763"], ["created_at", "2015-02-14 20:57:00.355644"], ["updated_at", "2015-02-14 20:57:00.355644"]]
64202
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64203
+ Medium Load (0.4ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
64204
+ Missing styles regenerated successfully.
64205
+  (0.2ms) rollback transaction
64206
+  (0.1ms) begin transaction
64207
+ ----------------------------------
64208
+ TasksTest: test_refresh_all_styles
64209
+ ----------------------------------
64210
+  (0.1ms) SAVEPOINT active_record_1
64211
+ SQL (0.1ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "180x150.gif"], ["attach_content_type", "image/gif"], ["attach_size", 5461], ["attach_updated_at", "2015-02-14 20:57:01.561864"], ["created_at", "2015-02-14 20:57:01.562982"], ["updated_at", "2015-02-14 20:57:01.562982"]]
64212
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64213
+ Medium Load (0.3ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
64214
+ All styles regenerated successfully.
64215
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
64216
+ All styles regenerated successfully.
64217
+  (0.2ms) rollback transaction
64218
+  (0.1ms) begin transaction
64219
+ -----------------------------
64220
+ S3StorageTest: test_image_url
64221
+ -----------------------------
64222
+  (0.1ms) SAVEPOINT active_record_1
64223
+ SQL (0.1ms) INSERT INTO "media" ("s3_attach_filename", "s3_attach_content_type", "s3_attach_size", "s3_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["s3_attach_filename", "180x150.gif"], ["s3_attach_content_type", "image/gif"], ["s3_attach_size", 5461], ["s3_attach_updated_at", "2015-02-14 20:57:03.442131"], ["created_at", "2015-02-14 20:57:03.443032"], ["updated_at", "2015-02-14 20:57:03.443032"]]
64224
+  (0.2ms) RELEASE SAVEPOINT active_record_1
64225
+  (0.2ms) rollback transaction
64226
+  (0.1ms) begin transaction
64227
+ -------------------------------
64228
+ S3StorageTest: test_detroy_attr
64229
+ -------------------------------
64230
+  (0.0ms) SAVEPOINT active_record_1
64231
+ SQL (0.1ms) INSERT INTO "media" ("s3_attach_filename", "s3_attach_content_type", "s3_attach_size", "s3_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["s3_attach_filename", "file.txt"], ["s3_attach_content_type", "text/plain"], ["s3_attach_size", 11], ["s3_attach_updated_at", "2015-02-14 20:57:05.436352"], ["created_at", "2015-02-14 20:57:05.437373"], ["updated_at", "2015-02-14 20:57:05.437373"]]
64232
+  (0.2ms) RELEASE SAVEPOINT active_record_1
64233
+  (0.1ms) SAVEPOINT active_record_1
64234
+ SQL (0.3ms) UPDATE "media" SET "s3_attach_filename" = ?, "s3_attach_content_type" = ?, "s3_attach_size" = ?, "s3_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = ? [["s3_attach_filename", nil], ["s3_attach_content_type", nil], ["s3_attach_size", nil], ["s3_attach_updated_at", nil], ["updated_at", "2015-02-14 20:57:06.669829"], ["id", 1]]
64235
+  (0.2ms) RELEASE SAVEPOINT active_record_1
64236
+  (0.2ms) rollback transaction
64237
+  (0.1ms) begin transaction
64238
+ ----------------------------
64239
+ S3StorageTest: test_file_url
64240
+ ----------------------------
64241
+  (0.1ms) SAVEPOINT active_record_1
64242
+ SQL (0.1ms) INSERT INTO "media" ("s3_attach_filename", "s3_attach_content_type", "s3_attach_size", "s3_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["s3_attach_filename", "file.txt"], ["s3_attach_content_type", "text/plain"], ["s3_attach_size", 11], ["s3_attach_updated_at", "2015-02-14 20:57:07.239108"], ["created_at", "2015-02-14 20:57:07.240507"], ["updated_at", "2015-02-14 20:57:07.240507"]]
64243
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64244
+  (0.3ms) rollback transaction
64245
+  (0.1ms) begin transaction
64246
+ ---------------------------
64247
+ S3StorageTest: test_storage
64248
+ ---------------------------
64249
+  (0.1ms) SAVEPOINT active_record_1
64250
+ SQL (0.1ms) INSERT INTO "media" ("s3_attach_filename", "s3_attach_content_type", "s3_attach_size", "s3_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["s3_attach_filename", "file.txt"], ["s3_attach_content_type", "text/plain"], ["s3_attach_size", 11], ["s3_attach_updated_at", "2015-02-14 20:57:07.801240"], ["created_at", "2015-02-14 20:57:07.802288"], ["updated_at", "2015-02-14 20:57:07.802288"]]
64251
+  (0.2ms) RELEASE SAVEPOINT active_record_1
64252
+  (0.2ms) SAVEPOINT active_record_1
64253
+ SQL (0.1ms) UPDATE "media" SET "s3_attach_filename" = ?, "s3_attach_content_type" = ?, "s3_attach_size" = ?, "s3_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = ? [["s3_attach_filename", "180x150.gif"], ["s3_attach_content_type", "image/gif"], ["s3_attach_size", 5461], ["s3_attach_updated_at", "2015-02-14 20:57:08.716904"], ["updated_at", "2015-02-14 20:57:08.717940"], ["id", 1]]
64254
+  (0.3ms) RELEASE SAVEPOINT active_record_1
64255
+  (0.1ms) SAVEPOINT active_record_1
64256
+ SQL (0.2ms) DELETE FROM "media" WHERE "media"."id" = ? [["id", 1]]
64257
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64258
+  (0.1ms) rollback transaction
64259
+  (0.0ms) begin transaction
64260
+ -------------------------------
64261
+ LocalStorageTest: test_file_url
64262
+ -------------------------------
64263
+  (0.1ms) SAVEPOINT active_record_1
64264
+ SQL (0.2ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "file.txt"], ["local_attach_content_type", "text/plain"], ["local_attach_size", 11], ["local_attach_updated_at", "2015-02-14 20:57:12.621754"], ["created_at", "2015-02-14 20:57:12.622599"], ["updated_at", "2015-02-14 20:57:12.622599"]]
64265
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64266
+  (0.1ms) rollback transaction
64267
+  (0.0ms) begin transaction
64268
+ ---------------------------
64269
+ LocalStorageTest: test_crud
64270
+ ---------------------------
64271
+  (0.1ms) SAVEPOINT active_record_1
64272
+ SQL (0.1ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "file.txt"], ["local_attach_content_type", "text/plain"], ["local_attach_size", 11], ["local_attach_updated_at", "2015-02-14 20:57:12.628336"], ["created_at", "2015-02-14 20:57:12.629582"], ["updated_at", "2015-02-14 20:57:12.629582"]]
64273
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64274
+  (0.1ms) SAVEPOINT active_record_1
64275
+ SQL (0.2ms) UPDATE "media" SET "local_attach_filename" = ?, "local_attach_content_type" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = ? [["local_attach_filename", "180x150.gif"], ["local_attach_content_type", "image/gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2015-02-14 20:57:12.632996"], ["updated_at", "2015-02-14 20:57:12.633897"], ["id", 1]]
64276
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64277
+  (0.1ms) SAVEPOINT active_record_1
64278
+ SQL (0.1ms) DELETE FROM "media" WHERE "media"."id" = ? [["id", 1]]
64279
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64280
+  (0.1ms) rollback transaction
64281
+  (0.0ms) begin transaction
64282
+ ----------------------------------
64283
+ LocalStorageTest: test_detroy_attr
64284
+ ----------------------------------
64285
+  (0.1ms) SAVEPOINT active_record_1
64286
+ SQL (0.1ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "file.txt"], ["local_attach_content_type", "text/plain"], ["local_attach_size", 11], ["local_attach_updated_at", "2015-02-14 20:57:13.056700"], ["created_at", "2015-02-14 20:57:13.057931"], ["updated_at", "2015-02-14 20:57:13.057931"]]
64287
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64288
+  (0.0ms) SAVEPOINT active_record_1
64289
+ SQL (0.1ms) UPDATE "media" SET "local_attach_filename" = ?, "local_attach_content_type" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = ? [["local_attach_filename", nil], ["local_attach_content_type", nil], ["local_attach_size", nil], ["local_attach_updated_at", nil], ["updated_at", "2015-02-14 20:57:13.062192"], ["id", 1]]
64290
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64291
+  (0.1ms) rollback transaction
64292
+  (0.0ms) begin transaction
64293
+ --------------------------------
64294
+ LocalStorageTest: test_image_url
64295
+ --------------------------------
64296
+  (0.2ms) SAVEPOINT active_record_1
64297
+ SQL (0.1ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "180x150.gif"], ["local_attach_content_type", "image/gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2015-02-14 20:57:13.071695"], ["created_at", "2015-02-14 20:57:13.072811"], ["updated_at", "2015-02-14 20:57:13.072811"]]
64298
+  (0.6ms) RELEASE SAVEPOINT active_record_1
64299
+  (0.1ms) rollback transaction
64300
+  (0.1ms) begin transaction
64301
+ -------------------------------------------
64302
+ ValidatorsTest: test_size_maximum_validator
64303
+ -------------------------------------------
64304
+  (0.1ms) SAVEPOINT active_record_1
64305
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64306
+  (0.0ms) rollback transaction
64307
+  (0.1ms) begin transaction
64308
+ -----------------------------------------------------
64309
+ ValidatorsTest: test_content_type_inclusion_validator
64310
+ -----------------------------------------------------
64311
+  (0.1ms) SAVEPOINT active_record_1
64312
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64313
+  (0.0ms) rollback transaction
64314
+  (0.1ms) begin transaction
64315
+ -------------------------------------------
64316
+ ValidatorsTest: test_size_minimum_validator
64317
+ -------------------------------------------
64318
+  (0.1ms) SAVEPOINT active_record_1
64319
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64320
+  (0.1ms) rollback transaction
64321
+  (0.0ms) begin transaction
64322
+ ---------------------------------------
64323
+ ValidatorsTest: test_presence_validator
64324
+ ---------------------------------------
64325
+  (0.1ms) SAVEPOINT active_record_1
64326
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64327
+  (0.1ms) rollback transaction
64328
+  (0.1ms) begin transaction
64329
+ -------------------------------------------------
64330
+ ValidatorsTest: test_content_type_regex_validator
64331
+ -------------------------------------------------
64332
+  (0.1ms) SAVEPOINT active_record_1
64333
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64334
+  (0.1ms) rollback transaction
64335
+  (0.0ms) begin transaction
64336
+ -----------------------------------------
64337
+ ValidatorsTest: test_size_range_validator
64338
+ -----------------------------------------
64339
+  (0.1ms) SAVEPOINT active_record_1
64340
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64341
+  (0.0ms) rollback transaction
64342
+  (0.1ms) begin transaction
64343
+ ------------------------------------
64344
+ MigrationTest: test_column_migration
64345
+ ------------------------------------
64346
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
64347
+  (0.2ms) ALTER TABLE "pictures" ADD "image_filename" varchar
64348
+  (0.1ms) ALTER TABLE "pictures" ADD "image_content_type" varchar
64349
+  (0.1ms) ALTER TABLE "pictures" ADD "image_size" integer
64350
+  (0.1ms) ALTER TABLE "pictures" ADD "image_updated_at" datetime
64351
+  (0.1ms) SAVEPOINT active_record_1
64352
+  (0.6ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime) 
64353
+  (0.1ms) SELECT * FROM "pictures"
64354
+  (0.1ms) DROP TABLE "pictures"
64355
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime)
64356
+  (0.1ms) SELECT * FROM "apictures"
64357
+  (0.1ms) DROP TABLE "apictures"
64358
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64359
+  (0.0ms) SAVEPOINT active_record_1
64360
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime) 
64361
+  (0.0ms) SELECT * FROM "pictures"
64362
+  (0.1ms) DROP TABLE "pictures"
64363
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime)
64364
+  (0.0ms) SELECT * FROM "apictures"
64365
+  (0.1ms) DROP TABLE "apictures"
64366
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64367
+  (0.0ms) SAVEPOINT active_record_1
64368
+  (0.2ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime) 
64369
+  (0.1ms) SELECT * FROM "pictures"
64370
+  (0.1ms) DROP TABLE "pictures"
64371
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime)
64372
+  (0.0ms) SELECT * FROM "apictures"
64373
+  (0.1ms) DROP TABLE "apictures"
64374
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64375
+  (0.0ms) SAVEPOINT active_record_1
64376
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime) 
64377
+  (0.0ms) SELECT * FROM "pictures"
64378
+  (0.1ms) DROP TABLE "pictures"
64379
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)
64380
+  (0.1ms) SELECT * FROM "apictures"
64381
+  (0.1ms) DROP TABLE "apictures"
64382
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64383
+  (0.1ms) rollback transaction
64384
+  (0.0ms) begin transaction
64385
+ -----------------------------------
64386
+ MigrationTest: test_table_migration
64387
+ -----------------------------------
64388
+  (0.3ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime)
64389
+  (0.1ms) DROP TABLE "pictures"
64390
+  (0.1ms) rollback transaction
64391
+  (0.1ms) begin transaction
64392
+ --------------------------------
64393
+ ProcessorTest: test_cover_resize
64394
+ --------------------------------
64395
+  (0.2ms) rollback transaction
64396
+  (0.1ms) begin transaction
64397
+ ----------------------------------
64398
+ ProcessorTest: test_contain_resize
64399
+ ----------------------------------
64400
+  (0.2ms) rollback transaction
64401
+  (0.1ms) begin transaction
64402
+ --------------------------------
64403
+ ProcessorTest: test_force_resize
64404
+ --------------------------------
64405
+  (0.1ms) rollback transaction
64406
+  (0.0ms) begin transaction
64407
+ --------------------------------------
64408
+ AttachmentTest: test_attachment_source
64409
+ --------------------------------------
64410
+  (0.1ms) SAVEPOINT active_record_1
64411
+ SQL (0.3ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "file.txt"], ["attach_content_type", "text/plain"], ["attach_size", 11], ["attach_updated_at", "2015-02-14 20:57:13.901776"], ["created_at", "2015-02-14 20:57:13.902712"], ["updated_at", "2015-02-14 20:57:13.902712"]]
64412
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64413
+  (0.0ms) SAVEPOINT active_record_1
64414
+ SQL (0.1ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "file.txt"], ["attach_content_type", "text/plain"], ["attach_size", 11], ["attach_updated_at", "2015-02-14 20:57:13.901776"], ["created_at", "2015-02-14 20:57:13.906311"], ["updated_at", "2015-02-14 20:57:13.906311"]]
64415
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64416
+  (0.1ms) rollback transaction
64417
+  (0.0ms) begin transaction
64418
+ -------------------------------
64419
+ AttachmentTest: test_uri_source
64420
+ -------------------------------
64421
+  (0.1ms) SAVEPOINT active_record_1
64422
+ SQL (0.1ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "file.txt"], ["attach_content_type", "application/xml"], ["attach_size", 302], ["attach_updated_at", "2015-02-14 20:57:14.314977"], ["created_at", "2015-02-14 20:57:14.316320"], ["updated_at", "2015-02-14 20:57:14.316320"]]
64423
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64424
+  (0.1ms) rollback transaction
64425
+  (0.3ms) CREATE TABLE "media" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attach_filename" varchar, "attach_content_type" varchar, "attach_size" integer, "attach_updated_at" datetime, "local_attach_filename" varchar, "local_attach_content_type" varchar, "local_attach_size" integer, "local_attach_updated_at" datetime, "s3_attach_filename" varchar, "s3_attach_content_type" varchar, "s3_attach_size" integer, "s3_attach_updated_at" datetime, "created_at" datetime, "updated_at" datetime) 
64426
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
64427
+  (0.1ms) select sqlite_version(*)
64428
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
64429
+  (0.0ms) SELECT version FROM "schema_migrations"
64430
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140808012639')
64431
+  (0.4ms) CREATE TABLE "media" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attach_filename" varchar, "attach_content_type" varchar, "attach_size" integer, "attach_updated_at" datetime, "local_attach_filename" varchar, "local_attach_content_type" varchar, "local_attach_size" integer, "local_attach_updated_at" datetime, "s3_attach_filename" varchar, "s3_attach_content_type" varchar, "s3_attach_size" integer, "s3_attach_updated_at" datetime, "created_at" datetime, "updated_at" datetime) 
64432
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
64433
+  (0.1ms) select sqlite_version(*)
64434
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
64435
+  (0.1ms) SELECT version FROM "schema_migrations"
64436
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140808012639')
64437
+  (0.1ms) begin transaction
64438
+ ---------------------------
64439
+ S3StorageTest: test_storage
64440
+ ---------------------------
64441
+  (0.1ms) SAVEPOINT active_record_1
64442
+ SQL (0.1ms) INSERT INTO "media" ("s3_attach_filename", "s3_attach_content_type", "s3_attach_size", "s3_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["s3_attach_filename", "file.txt"], ["s3_attach_content_type", "text/plain"], ["s3_attach_size", 11], ["s3_attach_updated_at", "2015-02-14 20:57:55.717294"], ["created_at", "2015-02-14 20:57:55.720021"], ["updated_at", "2015-02-14 20:57:55.720021"]]
64443
+  (0.2ms) RELEASE SAVEPOINT active_record_1
64444
+  (0.1ms) SAVEPOINT active_record_1
64445
+ SQL (0.2ms) UPDATE "media" SET "s3_attach_filename" = ?, "s3_attach_content_type" = ?, "s3_attach_size" = ?, "s3_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = ? [["s3_attach_filename", "180x150.gif"], ["s3_attach_content_type", "image/gif"], ["s3_attach_size", 5461], ["s3_attach_updated_at", "2015-02-14 20:57:57.545116"], ["updated_at", "2015-02-14 20:57:57.546264"], ["id", 1]]
64446
+  (0.3ms) RELEASE SAVEPOINT active_record_1
64447
+  (0.2ms) SAVEPOINT active_record_1
64448
+ SQL (0.2ms) DELETE FROM "media" WHERE "media"."id" = ? [["id", 1]]
64449
+  (0.2ms) RELEASE SAVEPOINT active_record_1
64450
+  (0.3ms) rollback transaction
64451
+  (0.1ms) begin transaction
64452
+ ----------------------------
64453
+ S3StorageTest: test_file_url
64454
+ ----------------------------
64455
+  (0.1ms) SAVEPOINT active_record_1
64456
+ SQL (0.2ms) INSERT INTO "media" ("s3_attach_filename", "s3_attach_content_type", "s3_attach_size", "s3_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["s3_attach_filename", "file.txt"], ["s3_attach_content_type", "text/plain"], ["s3_attach_size", 11], ["s3_attach_updated_at", "2015-02-14 20:58:03.952194"], ["created_at", "2015-02-14 20:58:03.953886"], ["updated_at", "2015-02-14 20:58:03.953886"]]
64457
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64458
+  (0.1ms) rollback transaction
64459
+  (0.1ms) begin transaction
64460
+ -----------------------------
64461
+ S3StorageTest: test_image_url
64462
+ -----------------------------
64463
+  (0.1ms) SAVEPOINT active_record_1
64464
+ SQL (0.1ms) INSERT INTO "media" ("s3_attach_filename", "s3_attach_content_type", "s3_attach_size", "s3_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["s3_attach_filename", "180x150.gif"], ["s3_attach_content_type", "image/gif"], ["s3_attach_size", 5461], ["s3_attach_updated_at", "2015-02-14 20:58:04.511151"], ["created_at", "2015-02-14 20:58:04.512196"], ["updated_at", "2015-02-14 20:58:04.512196"]]
64465
+  (0.3ms) RELEASE SAVEPOINT active_record_1
64466
+  (0.1ms) rollback transaction
64467
+  (0.1ms) begin transaction
64468
+ -------------------------------
64469
+ S3StorageTest: test_detroy_attr
64470
+ -------------------------------
64471
+  (0.1ms) SAVEPOINT active_record_1
64472
+ SQL (0.1ms) INSERT INTO "media" ("s3_attach_filename", "s3_attach_content_type", "s3_attach_size", "s3_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["s3_attach_filename", "file.txt"], ["s3_attach_content_type", "text/plain"], ["s3_attach_size", 11], ["s3_attach_updated_at", "2015-02-14 20:58:08.164311"], ["created_at", "2015-02-14 20:58:08.165376"], ["updated_at", "2015-02-14 20:58:08.165376"]]
64473
+  (0.2ms) RELEASE SAVEPOINT active_record_1
64474
+  (0.2ms) SAVEPOINT active_record_1
64475
+ SQL (0.2ms) UPDATE "media" SET "s3_attach_filename" = ?, "s3_attach_content_type" = ?, "s3_attach_size" = ?, "s3_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = ? [["s3_attach_filename", nil], ["s3_attach_content_type", nil], ["s3_attach_size", nil], ["s3_attach_updated_at", nil], ["updated_at", "2015-02-14 20:58:09.055795"], ["id", 1]]
64476
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64477
+  (0.2ms) rollback transaction
64478
+  (0.1ms) begin transaction
64479
+ --------------------------------------
64480
+ AttachmentTest: test_attachment_source
64481
+ --------------------------------------
64482
+  (0.1ms) SAVEPOINT active_record_1
64483
+ SQL (0.2ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "file.txt"], ["attach_content_type", "text/plain"], ["attach_size", 11], ["attach_updated_at", "2015-02-14 20:58:09.597758"], ["created_at", "2015-02-14 20:58:09.599247"], ["updated_at", "2015-02-14 20:58:09.599247"]]
64484
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64485
+  (0.1ms) SAVEPOINT active_record_1
64486
+ SQL (0.1ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "file.txt"], ["attach_content_type", "text/plain"], ["attach_size", 11], ["attach_updated_at", "2015-02-14 20:58:09.597758"], ["created_at", "2015-02-14 20:58:09.604861"], ["updated_at", "2015-02-14 20:58:09.604861"]]
64487
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64488
+  (0.1ms) rollback transaction
64489
+  (0.1ms) begin transaction
64490
+ -------------------------------
64491
+ AttachmentTest: test_uri_source
64492
+ -------------------------------
64493
+  (0.3ms) SAVEPOINT active_record_1
64494
+ SQL (0.2ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "file.txt"], ["attach_content_type", "application/xml"], ["attach_size", 290], ["attach_updated_at", "2015-02-14 20:58:09.969788"], ["created_at", "2015-02-14 20:58:09.972041"], ["updated_at", "2015-02-14 20:58:09.972041"]]
64495
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64496
+  (0.1ms) rollback transaction
64497
+  (0.1ms) begin transaction
64498
+ --------------------------------
64499
+ ProcessorTest: test_force_resize
64500
+ --------------------------------
64501
+  (0.1ms) rollback transaction
64502
+  (0.1ms) begin transaction
64503
+ --------------------------------
64504
+ ProcessorTest: test_cover_resize
64505
+ --------------------------------
64506
+  (0.1ms) rollback transaction
64507
+  (0.0ms) begin transaction
64508
+ ----------------------------------
64509
+ ProcessorTest: test_contain_resize
64510
+ ----------------------------------
64511
+  (0.1ms) rollback transaction
64512
+  (0.1ms) begin transaction
64513
+ -------------------------------------------
64514
+ ValidatorsTest: test_size_minimum_validator
64515
+ -------------------------------------------
64516
+  (0.1ms) SAVEPOINT active_record_1
64517
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64518
+  (0.0ms) rollback transaction
64519
+  (0.0ms) begin transaction
64520
+ -------------------------------------------------
64521
+ ValidatorsTest: test_content_type_regex_validator
64522
+ -------------------------------------------------
64523
+  (0.1ms) SAVEPOINT active_record_1
64524
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64525
+  (0.0ms) rollback transaction
64526
+  (0.1ms) begin transaction
64527
+ -----------------------------------------------------
64528
+ ValidatorsTest: test_content_type_inclusion_validator
64529
+ -----------------------------------------------------
64530
+  (0.2ms) SAVEPOINT active_record_1
64531
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64532
+  (0.0ms) rollback transaction
64533
+  (0.1ms) begin transaction
64534
+ -------------------------------------------
64535
+ ValidatorsTest: test_size_maximum_validator
64536
+ -------------------------------------------
64537
+  (0.1ms) SAVEPOINT active_record_1
64538
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64539
+  (0.1ms) rollback transaction
64540
+  (0.1ms) begin transaction
64541
+ ---------------------------------------
64542
+ ValidatorsTest: test_presence_validator
64543
+ ---------------------------------------
64544
+  (0.1ms) SAVEPOINT active_record_1
64545
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64546
+  (0.1ms) rollback transaction
64547
+  (0.1ms) begin transaction
64548
+ -----------------------------------------
64549
+ ValidatorsTest: test_size_range_validator
64550
+ -----------------------------------------
64551
+  (0.1ms) SAVEPOINT active_record_1
64552
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64553
+  (0.0ms) rollback transaction
64554
+  (0.0ms) begin transaction
64555
+ -----------------------------------
64556
+ MigrationTest: test_table_migration
64557
+ -----------------------------------
64558
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime)
64559
+  (0.1ms) DROP TABLE "pictures"
64560
+  (0.1ms) rollback transaction
64561
+  (0.1ms) begin transaction
64562
+ ------------------------------------
64563
+ MigrationTest: test_column_migration
64564
+ ------------------------------------
64565
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)
64566
+  (0.1ms) ALTER TABLE "pictures" ADD "image_filename" varchar
64567
+  (0.1ms) ALTER TABLE "pictures" ADD "image_content_type" varchar
64568
+  (0.1ms) ALTER TABLE "pictures" ADD "image_size" integer
64569
+  (0.2ms) ALTER TABLE "pictures" ADD "image_updated_at" datetime
64570
+  (0.0ms) SAVEPOINT active_record_1
64571
+  (0.5ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime)
64572
+  (0.0ms) SELECT * FROM "pictures"
64573
+  (0.1ms) DROP TABLE "pictures"
64574
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime) 
64575
+  (0.1ms) SELECT * FROM "apictures"
64576
+  (0.1ms) DROP TABLE "apictures"
64577
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64578
+  (0.1ms) SAVEPOINT active_record_1
64579
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar, "image_size" integer, "image_updated_at" datetime)
64580
+  (0.0ms) SELECT * FROM "pictures"
64581
+  (0.1ms) DROP TABLE "pictures"
64582
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime) 
64583
+  (0.1ms) SELECT * FROM "apictures"
64584
+  (0.1ms) DROP TABLE "apictures"
64585
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64586
+  (0.0ms) SAVEPOINT active_record_1
64587
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime)
64588
+  (0.0ms) SELECT * FROM "pictures"
64589
+  (0.1ms) DROP TABLE "pictures"
64590
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime) 
64591
+  (0.0ms) SELECT * FROM "apictures"
64592
+  (0.1ms) DROP TABLE "apictures"
64593
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64594
+  (0.0ms) SAVEPOINT active_record_1
64595
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime)
64596
+  (0.0ms) SELECT * FROM "pictures"
64597
+  (0.1ms) DROP TABLE "pictures"
64598
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
64599
+  (0.0ms) SELECT * FROM "apictures"
64600
+  (0.1ms) DROP TABLE "apictures"
64601
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64602
+  (0.1ms) rollback transaction
64603
+  (0.1ms) begin transaction
64604
+ ---------------------------
64605
+ LocalStorageTest: test_crud
64606
+ ---------------------------
64607
+  (0.1ms) SAVEPOINT active_record_1
64608
+ SQL (0.3ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "file.txt"], ["local_attach_content_type", "text/plain"], ["local_attach_size", 11], ["local_attach_updated_at", "2015-02-14 20:58:10.389221"], ["created_at", "2015-02-14 20:58:10.390113"], ["updated_at", "2015-02-14 20:58:10.390113"]]
64609
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64610
+  (0.0ms) SAVEPOINT active_record_1
64611
+ SQL (0.1ms) UPDATE "media" SET "local_attach_filename" = ?, "local_attach_content_type" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = ? [["local_attach_filename", "180x150.gif"], ["local_attach_content_type", "image/gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2015-02-14 20:58:10.394020"], ["updated_at", "2015-02-14 20:58:10.394517"], ["id", 1]]
64612
+  (0.2ms) RELEASE SAVEPOINT active_record_1
64613
+  (0.0ms) SAVEPOINT active_record_1
64614
+ SQL (0.1ms) DELETE FROM "media" WHERE "media"."id" = ? [["id", 1]]
64615
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64616
+  (0.1ms) rollback transaction
64617
+  (0.1ms) begin transaction
64618
+ -------------------------------
64619
+ LocalStorageTest: test_file_url
64620
+ -------------------------------
64621
+  (0.0ms) SAVEPOINT active_record_1
64622
+ SQL (0.1ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "file.txt"], ["local_attach_content_type", "text/plain"], ["local_attach_size", 11], ["local_attach_updated_at", "2015-02-14 20:58:10.411858"], ["created_at", "2015-02-14 20:58:10.412643"], ["updated_at", "2015-02-14 20:58:10.412643"]]
64623
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64624
+  (0.0ms) rollback transaction
64625
+  (0.1ms) begin transaction
64626
+ ----------------------------------
64627
+ LocalStorageTest: test_detroy_attr
64628
+ ----------------------------------
64629
+  (0.0ms) SAVEPOINT active_record_1
64630
+ SQL (0.0ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "file.txt"], ["local_attach_content_type", "text/plain"], ["local_attach_size", 11], ["local_attach_updated_at", "2015-02-14 20:58:10.417006"], ["created_at", "2015-02-14 20:58:10.418006"], ["updated_at", "2015-02-14 20:58:10.418006"]]
64631
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64632
+  (0.0ms) SAVEPOINT active_record_1
64633
+ SQL (0.1ms) UPDATE "media" SET "local_attach_filename" = ?, "local_attach_content_type" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = ? [["local_attach_filename", nil], ["local_attach_content_type", nil], ["local_attach_size", nil], ["local_attach_updated_at", nil], ["updated_at", "2015-02-14 20:58:10.420498"], ["id", 1]]
64634
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64635
+  (0.1ms) rollback transaction
64636
+  (0.1ms) begin transaction
64637
+ --------------------------------
64638
+ LocalStorageTest: test_image_url
64639
+ --------------------------------
64640
+  (0.1ms) SAVEPOINT active_record_1
64641
+ SQL (0.1ms) INSERT INTO "media" ("local_attach_filename", "local_attach_content_type", "local_attach_size", "local_attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["local_attach_filename", "180x150.gif"], ["local_attach_content_type", "image/gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2015-02-14 20:58:10.423125"], ["created_at", "2015-02-14 20:58:10.423800"], ["updated_at", "2015-02-14 20:58:10.423800"]]
64642
+  (0.5ms) RELEASE SAVEPOINT active_record_1
64643
+  (0.1ms) rollback transaction
64644
+  (0.1ms) begin transaction
64645
+ ----------------------------------
64646
+ TasksTest: test_refresh_all_styles
64647
+ ----------------------------------
64648
+  (0.1ms) SAVEPOINT active_record_1
64649
+ SQL (0.2ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "180x150.gif"], ["attach_content_type", "image/gif"], ["attach_size", 5461], ["attach_updated_at", "2015-02-14 20:58:10.887481"], ["created_at", "2015-02-14 20:58:10.888555"], ["updated_at", "2015-02-14 20:58:10.888555"]]
64650
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64651
+ Medium Load (0.3ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
64652
+ All styles regenerated successfully.
64653
+  (0.2ms) rollback transaction
64654
+  (0.1ms) begin transaction
64655
+ --------------------------------------
64656
+ TasksTest: test_refersh_missing_styles
64657
+ --------------------------------------
64658
+  (0.1ms) SAVEPOINT active_record_1
64659
+ SQL (0.1ms) INSERT INTO "media" ("attach_filename", "attach_content_type", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_filename", "180x150.gif"], ["attach_content_type", "image/gif"], ["attach_size", 5461], ["attach_updated_at", "2015-02-14 20:58:12.754059"], ["created_at", "2015-02-14 20:58:12.755283"], ["updated_at", "2015-02-14 20:58:12.755283"]]
64660
+  (0.2ms) RELEASE SAVEPOINT active_record_1
64661
+ Medium Load (0.3ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
64662
+ Missing styles regenerated successfully.
64663
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
64664
+ Missing styles regenerated successfully.
64665
+  (0.2ms) rollback transaction
64666
+  (0.1ms) begin transaction
64667
+ ------------------------------------------
64668
+ GeneratorsTest: test_initializer_generator
64669
+ ------------------------------------------
64670
+  (0.0ms) rollback transaction