attachs 0.4.1 → 0.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 393185c42c0aec2c323f8d958fa832825ab2b931
4
- data.tar.gz: 3d7edbd5e15fbd5ee1eba21bbf9563f345d94fb1
3
+ metadata.gz: 0dc2a875380a6891395c5771056ce19e4e332e39
4
+ data.tar.gz: 4a9f672f5eb7ddd27f8e4730b67addc18b0590f0
5
5
  SHA512:
6
- metadata.gz: 2c2d7d87ff89da949369dad068fde6a325fc386eb64f84d839a7f5e09f2fd35fbec582491e905bca766e5979422cef1e67a43c073f907a19889892ad5400e444
7
- data.tar.gz: 3696bfd7933332c93cf6747fb1b6600f3e7e1b1a2072be2f625279e1e2a289a9bd0dd523ea0d8785d28483fa5d15b335a54647d016d87210135da8ed9b4fc810
6
+ metadata.gz: 039aa93fee91348e30005936d12d461dfdc718a4562d1bde2a41e0cd8b4cc4ecd41b06dc72a50acedb5ff4e6b81927ba4416b0309dcf781446b23c346bdf25f9
7
+ data.tar.gz: 2c295688a7b24ec5cb77d1c5b74eaa02b14e73074007e01857f3dbfc0a5f020fd0062d8613230b89b6257826b7ce65d962d2ec5cae5802bbd80bca4c68a8d774
data/README.md CHANGED
@@ -28,16 +28,17 @@ rails g attachs:install
28
28
  The defaults values are:
29
29
  ```ruby
30
30
  Attachs.configure do |config|
31
+ config.s3 = { ssl: false }
32
+ config.base_url = ''
31
33
  config.styles = {}
34
+ config.cachebuster = true
32
35
  config.interpolations = {}
36
+ config.convert_options = {}
33
37
  config.global_styles = []
34
38
  config.global_convert_options= ''
35
- config.convert_options = {}
36
- config.default_processors = [:thumbnail]
37
39
  config.default_storage = :local
40
+ config.default_processors = [:thumbnail]
38
41
  config.default_path = '/:timestamp-:filename'
39
- config.base_url = ''
40
- config.s3 = { ssl: false }
41
42
  end
42
43
  ```
43
44
 
@@ -203,7 +204,33 @@ class User < ActiveRecord::Base
203
204
  end
204
205
  ```
205
206
 
206
- NOTE: If storage is s3 you can pass ssl: true to force https.
207
+ NOTE: If storage is s3 you can pass ssl: true to force https, or cachebuster: false in any storage to remove timestamp.
208
+
209
+ ## Cachebuster
210
+
211
+ All the urls end with a timestamp helper to prevent unwanted caching:
212
+ ```
213
+ example.com/media/photo.jpg?1234567890
214
+ ```
215
+
216
+ To disable cachebuster globally:
217
+ ```ruby
218
+ Attachs.configure do |config|
219
+ config.cachebuster = false
220
+ end
221
+ ```
222
+
223
+ To disable cachebuster in a model:
224
+ ```ruby
225
+ class User < ActiveRecord::Base
226
+ has_attached_file :avatar, cachebuster: false
227
+ end
228
+ ```
229
+
230
+ To disable cachebuster for some url:
231
+ ```erb
232
+ <%= image_tag user.avatar.url(cachebuster: false) %>
233
+ ```
207
234
 
208
235
  ## Storage
209
236
 
data/lib/attachs.rb CHANGED
@@ -30,6 +30,7 @@ module Attachs
30
30
  config.s3 = { ssl: false }
31
31
  config.base_url = ''
32
32
  config.styles = {}
33
+ config.cachebuster = true
33
34
  config.interpolations = {}
34
35
  config.convert_options = {}
35
36
  config.global_styles = []
@@ -59,6 +59,16 @@ module Attachs
59
59
  end
60
60
  end
61
61
 
62
+ def find_option(options, name, default)
63
+ if options.has_key?(name)
64
+ options[name]
65
+ elsif attachment.options.has_key?(name)
66
+ attachment.options[name]
67
+ else
68
+ default
69
+ end
70
+ end
71
+
62
72
  end
63
73
  end
64
74
  end
@@ -2,9 +2,15 @@ module Attachs
2
2
  module Storages
3
3
  class Local < Base
4
4
 
5
- def url(style=:original)
5
+ def url(*args)
6
6
  if attachment.url?
7
- "#{base_url.join(path(style))}?#{attachment.updated_at.to_i}"
7
+ options = args.extract_options!
8
+ style = (args[0] || :original)
9
+ base_url.join(path(style)).to_s.tap do |url|
10
+ if find_option(options, :cachebuster, Attachs.config.cachebuster)
11
+ url << "?#{attachment.updated_at.to_i}"
12
+ end
13
+ end
8
14
  end
9
15
  end
10
16
 
@@ -9,16 +9,11 @@ module Attachs
9
9
  if Attachs.config.base_url.present?
10
10
  Pathname.new(Attachs.config.base_url).join(path(style)).to_s
11
11
  else
12
- if options[:ssl].present?
13
- secure = options[:ssl]
14
- elsif attachment.options[:ssl].present?
15
- secure = attachment.options[:ssl]
16
- else
17
- secure = Attachs.config.s3[:ssl]
18
- end
19
- object(style).public_url(secure: secure).to_s
12
+ object(style).public_url(secure: find_option(options, :ssl, Attachs.config.s3[:ssl])).to_s
20
13
  end.tap do |url|
21
- url << "?#{attachment.updated_at.to_i}"
14
+ if find_option(options, :cachebuster, Attachs.config.cachebuster)
15
+ url << "?#{attachment.updated_at.to_i}"
16
+ end
22
17
  end
23
18
  end
24
19
  end
@@ -1,5 +1,5 @@
1
1
  module Attachs
2
2
 
3
- VERSION = '0.4.1'
3
+ VERSION = '0.4.2'
4
4
 
5
5
  end
@@ -61410,3 +61410,1917 @@ ProcessorTest: test_cover_resize
61410
61410
  ProcessorTest: test_force_resize
61411
61411
  --------------------------------
61412
61412
   (0.1ms) rollback transaction
61413
+  (0.4ms) CREATE TABLE "media" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attach_filename" varchar(255), "attach_content_type" varchar(255), "attach_size" integer, "attach_updated_at" datetime, "local_attach_filename" varchar(255), "local_attach_content_type" varchar(255), "local_attach_size" integer, "local_attach_updated_at" datetime, "s3_attach_filename" varchar(255), "s3_attach_content_type" varchar(255), "s3_attach_size" integer, "s3_attach_updated_at" datetime, "created_at" datetime, "updated_at" datetime) 
61414
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
61415
+  (0.1ms) select sqlite_version(*)
61416
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
61417
+  (0.1ms) SELECT version FROM "schema_migrations"
61418
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140808012639')
61419
+  (0.1ms) begin transaction
61420
+ -----------------------------------------------------
61421
+ ValidatorsTest: test_content_type_inclusion_validator
61422
+ -----------------------------------------------------
61423
+  (0.1ms) SAVEPOINT active_record_1
61424
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61425
+  (0.0ms) rollback transaction
61426
+  (0.0ms) begin transaction
61427
+ -------------------------------------------------
61428
+ ValidatorsTest: test_content_type_regex_validator
61429
+ -------------------------------------------------
61430
+  (0.1ms) SAVEPOINT active_record_1
61431
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61432
+  (0.0ms) rollback transaction
61433
+  (0.0ms) begin transaction
61434
+ ---------------------------------------
61435
+ ValidatorsTest: test_presence_validator
61436
+ ---------------------------------------
61437
+  (0.1ms) SAVEPOINT active_record_1
61438
+  (0.0ms) RELEASE SAVEPOINT active_record_1
61439
+  (0.0ms) rollback transaction
61440
+  (0.1ms) begin transaction
61441
+ -------------------------------------------
61442
+ ValidatorsTest: test_size_maximum_validator
61443
+ -------------------------------------------
61444
+  (0.1ms) SAVEPOINT active_record_1
61445
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61446
+  (0.0ms) rollback transaction
61447
+  (0.0ms) begin transaction
61448
+ -------------------------------------------
61449
+ ValidatorsTest: test_size_minimum_validator
61450
+ -------------------------------------------
61451
+  (0.1ms) SAVEPOINT active_record_1
61452
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61453
+  (0.0ms) rollback transaction
61454
+  (0.0ms) begin transaction
61455
+ -----------------------------------------
61456
+ ValidatorsTest: test_size_range_validator
61457
+ -----------------------------------------
61458
+  (0.1ms) SAVEPOINT active_record_1
61459
+  (0.0ms) RELEASE SAVEPOINT active_record_1
61460
+  (0.2ms) rollback transaction
61461
+  (0.1ms) begin transaction
61462
+ ----------------------------------
61463
+ ProcessorTest: test_contain_resize
61464
+ ----------------------------------
61465
+  (0.1ms) rollback transaction
61466
+  (0.1ms) begin transaction
61467
+ --------------------------------
61468
+ ProcessorTest: test_cover_resize
61469
+ --------------------------------
61470
+  (0.1ms) rollback transaction
61471
+  (0.1ms) begin transaction
61472
+ --------------------------------
61473
+ ProcessorTest: test_force_resize
61474
+ --------------------------------
61475
+  (0.1ms) rollback transaction
61476
+  (0.1ms) begin transaction
61477
+ --------------------------------------
61478
+ TasksTest: test_refersh_missing_styles
61479
+ --------------------------------------
61480
+  (0.1ms) SAVEPOINT active_record_1
61481
+ SQL (0.2ms) INSERT INTO "media" ("attach_content_type", "attach_filename", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_content_type", "image/gif"], ["attach_filename", "180x150.gif"], ["attach_size", 5461], ["attach_updated_at", "2014-11-17 20:35:38.869812"], ["created_at", "2014-11-17 20:35:38.870592"], ["updated_at", "2014-11-17 20:35:38.870592"]]
61482
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61483
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
61484
+ Missing styles regenerated successfully.
61485
+  (0.2ms) rollback transaction
61486
+  (0.1ms) begin transaction
61487
+ ----------------------------------
61488
+ TasksTest: test_refresh_all_styles
61489
+ ----------------------------------
61490
+  (0.1ms) SAVEPOINT active_record_1
61491
+ SQL (0.1ms) INSERT INTO "media" ("attach_content_type", "attach_filename", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_content_type", "image/gif"], ["attach_filename", "180x150.gif"], ["attach_size", 5461], ["attach_updated_at", "2014-11-17 20:35:40.356209"], ["created_at", "2014-11-17 20:35:40.357010"], ["updated_at", "2014-11-17 20:35:40.357010"]]
61492
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61493
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
61494
+ All styles regenerated successfully.
61495
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
61496
+ All styles regenerated successfully.
61497
+  (0.2ms) rollback transaction
61498
+  (0.1ms) begin transaction
61499
+ ------------------------------------------
61500
+ GeneratorsTest: test_initializer_generator
61501
+ ------------------------------------------
61502
+  (0.1ms) rollback transaction
61503
+  (0.1ms) begin transaction
61504
+ ------------------------------------
61505
+ MigrationTest: test_column_migration
61506
+ ------------------------------------
61507
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
61508
+  (0.2ms) ALTER TABLE "pictures" ADD "image_filename" varchar(255)
61509
+  (0.1ms) ALTER TABLE "pictures" ADD "image_content_type" varchar(255)
61510
+  (0.1ms) ALTER TABLE "pictures" ADD "image_size" integer
61511
+  (0.1ms) ALTER TABLE "pictures" ADD "image_updated_at" datetime
61512
+  (0.1ms) SAVEPOINT active_record_1
61513
+  (1.5ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar(255), "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime) 
61514
+  (0.2ms) SELECT * FROM "pictures"
61515
+  (0.1ms) DROP TABLE "pictures"
61516
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime)
61517
+  (0.1ms) SELECT * FROM "apictures"
61518
+  (0.2ms) DROP TABLE "apictures"
61519
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61520
+  (0.0ms) SAVEPOINT active_record_1
61521
+  (0.2ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime) 
61522
+  (0.1ms) SELECT * FROM "pictures"
61523
+  (0.1ms) DROP TABLE "pictures"
61524
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime)
61525
+  (0.1ms) SELECT * FROM "apictures"
61526
+  (0.2ms) DROP TABLE "apictures"
61527
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61528
+  (0.1ms) SAVEPOINT active_record_1
61529
+  (0.2ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime) 
61530
+  (0.1ms) SELECT * FROM "pictures"
61531
+  (0.1ms) DROP TABLE "pictures"
61532
+  (0.3ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime)
61533
+  (0.1ms) SELECT * FROM "apictures"
61534
+  (0.1ms) DROP TABLE "apictures"
61535
+  (0.0ms) RELEASE SAVEPOINT active_record_1
61536
+  (0.0ms) SAVEPOINT active_record_1
61537
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime) 
61538
+  (0.1ms) SELECT * FROM "pictures"
61539
+  (0.1ms) DROP TABLE "pictures"
61540
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)
61541
+  (0.1ms) SELECT * FROM "apictures"
61542
+  (0.1ms) DROP TABLE "apictures"
61543
+  (0.0ms) RELEASE SAVEPOINT active_record_1
61544
+  (0.2ms) rollback transaction
61545
+  (0.0ms) begin transaction
61546
+ -----------------------------------
61547
+ MigrationTest: test_table_migration
61548
+ -----------------------------------
61549
+  (0.3ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar(255), "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime)
61550
+  (0.2ms) DROP TABLE "pictures"
61551
+  (0.1ms) rollback transaction
61552
+  (0.0ms) begin transaction
61553
+ --------------------------------------
61554
+ AttachmentTest: test_attachment_source
61555
+ --------------------------------------
61556
+  (0.1ms) SAVEPOINT active_record_1
61557
+ SQL (0.3ms) 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 20:35:42.271263"], ["created_at", "2014-11-17 20:35:42.271806"], ["updated_at", "2014-11-17 20:35:42.271806"]]
61558
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61559
+  (0.0ms) SAVEPOINT active_record_1
61560
+ 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 20:35:42.271263"], ["created_at", "2014-11-17 20:35:42.275372"], ["updated_at", "2014-11-17 20:35:42.275372"]]
61561
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61562
+  (0.1ms) rollback transaction
61563
+  (0.1ms) begin transaction
61564
+ -------------------------------
61565
+ AttachmentTest: test_uri_source
61566
+ -------------------------------
61567
+  (0.2ms) SAVEPOINT active_record_1
61568
+ 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 20:35:42.667041"], ["created_at", "2014-11-17 20:35:42.667992"], ["updated_at", "2014-11-17 20:35:42.667992"]]
61569
+  (0.0ms) RELEASE SAVEPOINT active_record_1
61570
+  (0.1ms) rollback transaction
61571
+  (0.1ms) begin transaction
61572
+ ---------------------------
61573
+ LocalStorageTest: test_crud
61574
+ ---------------------------
61575
+  (0.0ms) SAVEPOINT active_record_1
61576
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:35:42.674210"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 20:35:42.673837"], ["updated_at", "2014-11-17 20:35:42.674210"]]
61577
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61578
+  (0.0ms) SAVEPOINT active_record_1
61579
+ SQL (0.1ms) UPDATE "media" SET "local_attach_content_type" = ?, "local_attach_filename" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["local_attach_content_type", "image/gif"], ["local_attach_filename", "180x150.gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2014-11-17 20:35:42.678286"], ["updated_at", "2014-11-17 20:35:42.678535"]]
61580
+  (0.2ms) RELEASE SAVEPOINT active_record_1
61581
+  (0.1ms) SAVEPOINT active_record_1
61582
+ SQL (0.1ms) DELETE FROM "media" WHERE "media"."id" = ? [["id", 1]]
61583
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61584
+  (0.1ms) rollback transaction
61585
+  (0.1ms) begin transaction
61586
+ ----------------------------------
61587
+ LocalStorageTest: test_detroy_attr
61588
+ ----------------------------------
61589
+  (0.0ms) SAVEPOINT active_record_1
61590
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:35:42.700804"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 20:35:42.700338"], ["updated_at", "2014-11-17 20:35:42.700804"]]
61591
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61592
+  (0.1ms) SAVEPOINT active_record_1
61593
+ SQL (0.1ms) UPDATE "media" SET "local_attach_content_type" = ?, "local_attach_filename" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["local_attach_content_type", nil], ["local_attach_filename", nil], ["local_attach_size", nil], ["local_attach_updated_at", nil], ["updated_at", "2014-11-17 20:35:42.717700"]]
61594
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61595
+  (0.1ms) rollback transaction
61596
+  (0.0ms) begin transaction
61597
+ -------------------------------
61598
+ LocalStorageTest: test_file_url
61599
+ -------------------------------
61600
+  (0.0ms) SAVEPOINT active_record_1
61601
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:35:42.721001"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 20:35:42.720696"], ["updated_at", "2014-11-17 20:35:42.721001"]]
61602
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61603
+  (0.1ms) rollback transaction
61604
+  (0.0ms) begin transaction
61605
+ --------------------------------
61606
+ LocalStorageTest: test_image_url
61607
+ --------------------------------
61608
+  (0.0ms) SAVEPOINT active_record_1
61609
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:35:42.725563"], ["local_attach_content_type", "image/gif"], ["local_attach_filename", "180x150.gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2014-11-17 20:35:42.725224"], ["updated_at", "2014-11-17 20:35:42.725563"]]
61610
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61611
+  (0.1ms) rollback transaction
61612
+  (0.3ms) CREATE TABLE "media" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attach_filename" varchar(255), "attach_content_type" varchar(255), "attach_size" integer, "attach_updated_at" datetime, "local_attach_filename" varchar(255), "local_attach_content_type" varchar(255), "local_attach_size" integer, "local_attach_updated_at" datetime, "s3_attach_filename" varchar(255), "s3_attach_content_type" varchar(255), "s3_attach_size" integer, "s3_attach_updated_at" datetime, "created_at" datetime, "updated_at" datetime) 
61613
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
61614
+  (0.1ms) select sqlite_version(*)
61615
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
61616
+  (0.1ms) SELECT version FROM "schema_migrations"
61617
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140808012639')
61618
+  (0.1ms) begin transaction
61619
+ -----------------------------------------------------
61620
+ ValidatorsTest: test_content_type_inclusion_validator
61621
+ -----------------------------------------------------
61622
+  (0.1ms) SAVEPOINT active_record_1
61623
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61624
+  (0.1ms) rollback transaction
61625
+  (0.0ms) begin transaction
61626
+ -------------------------------------------------
61627
+ ValidatorsTest: test_content_type_regex_validator
61628
+ -------------------------------------------------
61629
+  (0.0ms) SAVEPOINT active_record_1
61630
+  (0.0ms) RELEASE SAVEPOINT active_record_1
61631
+  (0.0ms) rollback transaction
61632
+  (0.0ms) begin transaction
61633
+ ---------------------------------------
61634
+ ValidatorsTest: test_presence_validator
61635
+ ---------------------------------------
61636
+  (0.0ms) SAVEPOINT active_record_1
61637
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61638
+  (0.0ms) rollback transaction
61639
+  (0.0ms) begin transaction
61640
+ -------------------------------------------
61641
+ ValidatorsTest: test_size_maximum_validator
61642
+ -------------------------------------------
61643
+  (0.1ms) SAVEPOINT active_record_1
61644
+  (0.0ms) RELEASE SAVEPOINT active_record_1
61645
+  (0.0ms) rollback transaction
61646
+  (0.0ms) begin transaction
61647
+ -------------------------------------------
61648
+ ValidatorsTest: test_size_minimum_validator
61649
+ -------------------------------------------
61650
+  (0.1ms) SAVEPOINT active_record_1
61651
+  (0.0ms) RELEASE SAVEPOINT active_record_1
61652
+  (0.0ms) rollback transaction
61653
+  (0.0ms) begin transaction
61654
+ -----------------------------------------
61655
+ ValidatorsTest: test_size_range_validator
61656
+ -----------------------------------------
61657
+  (0.1ms) SAVEPOINT active_record_1
61658
+  (0.0ms) RELEASE SAVEPOINT active_record_1
61659
+  (0.1ms) rollback transaction
61660
+  (0.0ms) begin transaction
61661
+ ------------------------------------
61662
+ MigrationTest: test_column_migration
61663
+ ------------------------------------
61664
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)
61665
+  (0.1ms) ALTER TABLE "pictures" ADD "image_filename" varchar(255)
61666
+  (0.1ms) ALTER TABLE "pictures" ADD "image_content_type" varchar(255)
61667
+  (0.2ms) ALTER TABLE "pictures" ADD "image_size" integer
61668
+  (0.1ms) ALTER TABLE "pictures" ADD "image_updated_at" datetime
61669
+  (0.0ms) SAVEPOINT active_record_1
61670
+  (1.6ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar(255), "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime)
61671
+  (0.1ms) SELECT * FROM "pictures"
61672
+  (0.1ms) DROP TABLE "pictures"
61673
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime) 
61674
+  (0.1ms) SELECT * FROM "apictures"
61675
+  (0.1ms) DROP TABLE "apictures"
61676
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61677
+  (0.0ms) SAVEPOINT active_record_1
61678
+  (0.2ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime)
61679
+  (0.0ms) SELECT * FROM "pictures"
61680
+  (0.1ms) DROP TABLE "pictures"
61681
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime) 
61682
+  (0.1ms) SELECT * FROM "apictures"
61683
+  (0.1ms) DROP TABLE "apictures"
61684
+  (0.0ms) RELEASE SAVEPOINT active_record_1
61685
+  (0.0ms) SAVEPOINT active_record_1
61686
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime)
61687
+  (0.1ms) SELECT * FROM "pictures"
61688
+  (0.1ms) DROP TABLE "pictures"
61689
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime) 
61690
+  (0.0ms) SELECT * FROM "apictures"
61691
+  (0.1ms) DROP TABLE "apictures"
61692
+  (0.0ms) RELEASE SAVEPOINT active_record_1
61693
+  (0.0ms) SAVEPOINT active_record_1
61694
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime)
61695
+  (0.1ms) SELECT * FROM "pictures"
61696
+  (0.1ms) DROP TABLE "pictures"
61697
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
61698
+  (0.1ms) SELECT * FROM "apictures"
61699
+  (0.1ms) DROP TABLE "apictures"
61700
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61701
+  (0.2ms) rollback transaction
61702
+  (0.0ms) begin transaction
61703
+ -----------------------------------
61704
+ MigrationTest: test_table_migration
61705
+ -----------------------------------
61706
+  (0.3ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar(255), "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime) 
61707
+  (0.1ms) DROP TABLE "pictures"
61708
+  (0.1ms) rollback transaction
61709
+  (0.0ms) begin transaction
61710
+ ----------------------------------
61711
+ ProcessorTest: test_contain_resize
61712
+ ----------------------------------
61713
+  (0.1ms) rollback transaction
61714
+  (0.1ms) begin transaction
61715
+ --------------------------------
61716
+ ProcessorTest: test_cover_resize
61717
+ --------------------------------
61718
+  (0.1ms) rollback transaction
61719
+  (0.1ms) begin transaction
61720
+ --------------------------------
61721
+ ProcessorTest: test_force_resize
61722
+ --------------------------------
61723
+  (0.1ms) rollback transaction
61724
+  (0.1ms) begin transaction
61725
+ ------------------------------------------
61726
+ GeneratorsTest: test_initializer_generator
61727
+ ------------------------------------------
61728
+  (0.1ms) rollback transaction
61729
+  (0.1ms) begin transaction
61730
+ ---------------------------
61731
+ LocalStorageTest: test_crud
61732
+ ---------------------------
61733
+  (0.1ms) SAVEPOINT active_record_1
61734
+ SQL (0.4ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:36:05.760293"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 20:36:05.759595"], ["updated_at", "2014-11-17 20:36:05.760293"]]
61735
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61736
+  (0.0ms) SAVEPOINT active_record_1
61737
+ SQL (0.1ms) UPDATE "media" SET "local_attach_content_type" = ?, "local_attach_filename" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["local_attach_content_type", "image/gif"], ["local_attach_filename", "180x150.gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2014-11-17 20:36:05.767338"], ["updated_at", "2014-11-17 20:36:05.767593"]]
61738
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61739
+  (0.0ms) SAVEPOINT active_record_1
61740
+ SQL (0.1ms) DELETE FROM "media" WHERE "media"."id" = ? [["id", 1]]
61741
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61742
+  (0.1ms) rollback transaction
61743
+  (0.1ms) begin transaction
61744
+ ----------------------------------
61745
+ LocalStorageTest: test_detroy_attr
61746
+ ----------------------------------
61747
+  (0.1ms) SAVEPOINT active_record_1
61748
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:36:05.788155"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 20:36:05.787624"], ["updated_at", "2014-11-17 20:36:05.788155"]]
61749
+  (0.2ms) RELEASE SAVEPOINT active_record_1
61750
+  (0.0ms) SAVEPOINT active_record_1
61751
+ SQL (0.2ms) UPDATE "media" SET "local_attach_content_type" = ?, "local_attach_filename" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["local_attach_content_type", nil], ["local_attach_filename", nil], ["local_attach_size", nil], ["local_attach_updated_at", nil], ["updated_at", "2014-11-17 20:36:05.793139"]]
61752
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61753
+  (0.1ms) rollback transaction
61754
+  (0.0ms) begin transaction
61755
+ -------------------------------
61756
+ LocalStorageTest: test_file_url
61757
+ -------------------------------
61758
+  (0.1ms) SAVEPOINT active_record_1
61759
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:36:05.797487"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 20:36:05.796963"], ["updated_at", "2014-11-17 20:36:05.797487"]]
61760
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61761
+  (0.1ms) rollback transaction
61762
+  (0.1ms) begin transaction
61763
+ --------------------------------
61764
+ LocalStorageTest: test_image_url
61765
+ --------------------------------
61766
+  (0.1ms) SAVEPOINT active_record_1
61767
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:36:05.802461"], ["local_attach_content_type", "image/gif"], ["local_attach_filename", "180x150.gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2014-11-17 20:36:05.802077"], ["updated_at", "2014-11-17 20:36:05.802461"]]
61768
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61769
+  (0.1ms) rollback transaction
61770
+  (0.1ms) begin transaction
61771
+ --------------------------------------
61772
+ TasksTest: test_refersh_missing_styles
61773
+ --------------------------------------
61774
+  (0.1ms) SAVEPOINT active_record_1
61775
+ SQL (0.1ms) INSERT INTO "media" ("attach_content_type", "attach_filename", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_content_type", "image/gif"], ["attach_filename", "180x150.gif"], ["attach_size", 5461], ["attach_updated_at", "2014-11-17 20:36:06.235525"], ["created_at", "2014-11-17 20:36:06.236227"], ["updated_at", "2014-11-17 20:36:06.236227"]]
61776
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61777
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
61778
+ Missing styles regenerated successfully.
61779
+  (0.2ms) rollback transaction
61780
+  (0.1ms) begin transaction
61781
+ ----------------------------------
61782
+ TasksTest: test_refresh_all_styles
61783
+ ----------------------------------
61784
+  (0.1ms) SAVEPOINT active_record_1
61785
+ SQL (0.1ms) INSERT INTO "media" ("attach_content_type", "attach_filename", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_content_type", "image/gif"], ["attach_filename", "180x150.gif"], ["attach_size", 5461], ["attach_updated_at", "2014-11-17 20:36:07.710365"], ["created_at", "2014-11-17 20:36:07.711171"], ["updated_at", "2014-11-17 20:36:07.711171"]]
61786
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61787
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
61788
+ All styles regenerated successfully.
61789
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
61790
+ All styles regenerated successfully.
61791
+  (0.2ms) rollback transaction
61792
+  (0.1ms) begin transaction
61793
+ --------------------------------------
61794
+ AttachmentTest: test_attachment_source
61795
+ --------------------------------------
61796
+  (0.1ms) SAVEPOINT active_record_1
61797
+ SQL (0.2ms) 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 20:36:09.589236"], ["created_at", "2014-11-17 20:36:09.589719"], ["updated_at", "2014-11-17 20:36:09.589719"]]
61798
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61799
+  (0.0ms) SAVEPOINT active_record_1
61800
+ 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 20:36:09.589236"], ["created_at", "2014-11-17 20:36:09.592689"], ["updated_at", "2014-11-17 20:36:09.592689"]]
61801
+  (0.0ms) RELEASE SAVEPOINT active_record_1
61802
+  (0.1ms) rollback transaction
61803
+  (0.1ms) begin transaction
61804
+ -------------------------------
61805
+ AttachmentTest: test_uri_source
61806
+ -------------------------------
61807
+  (0.1ms) SAVEPOINT active_record_1
61808
+ 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 20:36:09.953303"], ["created_at", "2014-11-17 20:36:09.954219"], ["updated_at", "2014-11-17 20:36:09.954219"]]
61809
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61810
+  (0.1ms) rollback transaction
61811
+  (0.4ms) CREATE TABLE "media" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attach_filename" varchar(255), "attach_content_type" varchar(255), "attach_size" integer, "attach_updated_at" datetime, "local_attach_filename" varchar(255), "local_attach_content_type" varchar(255), "local_attach_size" integer, "local_attach_updated_at" datetime, "s3_attach_filename" varchar(255), "s3_attach_content_type" varchar(255), "s3_attach_size" integer, "s3_attach_updated_at" datetime, "created_at" datetime, "updated_at" datetime) 
61812
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
61813
+  (0.1ms) select sqlite_version(*)
61814
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
61815
+  (0.0ms) SELECT version FROM "schema_migrations"
61816
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140808012639')
61817
+  (0.1ms) begin transaction
61818
+ --------------------------------------
61819
+ TasksTest: test_refersh_missing_styles
61820
+ --------------------------------------
61821
+  (0.1ms) SAVEPOINT active_record_1
61822
+ SQL (0.2ms) INSERT INTO "media" ("attach_content_type", "attach_filename", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_content_type", "image/gif"], ["attach_filename", "180x150.gif"], ["attach_size", 5461], ["attach_updated_at", "2014-11-17 20:50:19.500508"], ["created_at", "2014-11-17 20:50:19.502924"], ["updated_at", "2014-11-17 20:50:19.502924"]]
61823
+  (0.2ms) RELEASE SAVEPOINT active_record_1
61824
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
61825
+ Missing styles regenerated successfully.
61826
+  (0.2ms) rollback transaction
61827
+  (0.1ms) begin transaction
61828
+ ----------------------------------
61829
+ TasksTest: test_refresh_all_styles
61830
+ ----------------------------------
61831
+  (0.1ms) SAVEPOINT active_record_1
61832
+ SQL (0.1ms) INSERT INTO "media" ("attach_content_type", "attach_filename", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_content_type", "image/gif"], ["attach_filename", "180x150.gif"], ["attach_size", 5461], ["attach_updated_at", "2014-11-17 20:50:20.660216"], ["created_at", "2014-11-17 20:50:20.660884"], ["updated_at", "2014-11-17 20:50:20.660884"]]
61833
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61834
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
61835
+ All styles regenerated successfully.
61836
+ Medium Load (0.3ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
61837
+ All styles regenerated successfully.
61838
+  (0.2ms) rollback transaction
61839
+  (0.1ms) begin transaction
61840
+ ---------------------------
61841
+ LocalStorageTest: test_crud
61842
+ ---------------------------
61843
+  (0.0ms) SAVEPOINT active_record_1
61844
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:50:22.532261"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 20:50:22.531828"], ["updated_at", "2014-11-17 20:50:22.532261"]]
61845
+  (0.0ms) RELEASE SAVEPOINT active_record_1
61846
+  (0.0ms) SAVEPOINT active_record_1
61847
+ SQL (0.1ms) UPDATE "media" SET "local_attach_content_type" = ?, "local_attach_filename" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["local_attach_content_type", "image/gif"], ["local_attach_filename", "180x150.gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2014-11-17 20:50:22.536087"], ["updated_at", "2014-11-17 20:50:22.536278"]]
61848
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61849
+  (0.0ms) SAVEPOINT active_record_1
61850
+ SQL (0.2ms) DELETE FROM "media" WHERE "media"."id" = ? [["id", 1]]
61851
+  (0.0ms) RELEASE SAVEPOINT active_record_1
61852
+  (0.1ms) rollback transaction
61853
+  (0.1ms) begin transaction
61854
+ ----------------------------------
61855
+ LocalStorageTest: test_detroy_attr
61856
+ ----------------------------------
61857
+  (0.1ms) SAVEPOINT active_record_1
61858
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:50:22.556544"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 20:50:22.556009"], ["updated_at", "2014-11-17 20:50:22.556544"]]
61859
+  (0.0ms) RELEASE SAVEPOINT active_record_1
61860
+  (0.0ms) SAVEPOINT active_record_1
61861
+ SQL (0.1ms) UPDATE "media" SET "local_attach_content_type" = ?, "local_attach_filename" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["local_attach_content_type", nil], ["local_attach_filename", nil], ["local_attach_size", nil], ["local_attach_updated_at", nil], ["updated_at", "2014-11-17 20:50:22.560104"]]
61862
+  (0.0ms) RELEASE SAVEPOINT active_record_1
61863
+  (0.1ms) rollback transaction
61864
+  (0.0ms) begin transaction
61865
+ -------------------------------
61866
+ LocalStorageTest: test_file_url
61867
+ -------------------------------
61868
+  (0.1ms) SAVEPOINT active_record_1
61869
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:50:22.562535"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 20:50:22.562232"], ["updated_at", "2014-11-17 20:50:22.562535"]]
61870
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61871
+  (0.2ms) rollback transaction
61872
+  (0.1ms) begin transaction
61873
+ --------------------------------
61874
+ LocalStorageTest: test_image_url
61875
+ --------------------------------
61876
+  (0.1ms) SAVEPOINT active_record_1
61877
+ SQL (0.2ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:50:22.577654"], ["local_attach_content_type", "image/gif"], ["local_attach_filename", "180x150.gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2014-11-17 20:50:22.577128"], ["updated_at", "2014-11-17 20:50:22.577654"]]
61878
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61879
+  (0.2ms) rollback transaction
61880
+  (0.1ms) begin transaction
61881
+ ----------------------------------
61882
+ ProcessorTest: test_contain_resize
61883
+ ----------------------------------
61884
+  (0.1ms) rollback transaction
61885
+  (0.1ms) begin transaction
61886
+ --------------------------------
61887
+ ProcessorTest: test_cover_resize
61888
+ --------------------------------
61889
+  (0.1ms) rollback transaction
61890
+  (0.1ms) begin transaction
61891
+ --------------------------------
61892
+ ProcessorTest: test_force_resize
61893
+ --------------------------------
61894
+  (0.1ms) rollback transaction
61895
+  (0.1ms) begin transaction
61896
+ ------------------------------------------
61897
+ GeneratorsTest: test_initializer_generator
61898
+ ------------------------------------------
61899
+  (0.1ms) rollback transaction
61900
+  (0.0ms) begin transaction
61901
+ -----------------------------------------------------
61902
+ ValidatorsTest: test_content_type_inclusion_validator
61903
+ -----------------------------------------------------
61904
+  (0.2ms) SAVEPOINT active_record_1
61905
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61906
+  (0.1ms) rollback transaction
61907
+  (0.0ms) begin transaction
61908
+ -------------------------------------------------
61909
+ ValidatorsTest: test_content_type_regex_validator
61910
+ -------------------------------------------------
61911
+  (0.1ms) SAVEPOINT active_record_1
61912
+  (0.0ms) RELEASE SAVEPOINT active_record_1
61913
+  (0.0ms) rollback transaction
61914
+  (0.0ms) begin transaction
61915
+ ---------------------------------------
61916
+ ValidatorsTest: test_presence_validator
61917
+ ---------------------------------------
61918
+  (0.1ms) SAVEPOINT active_record_1
61919
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61920
+  (0.0ms) rollback transaction
61921
+  (0.0ms) begin transaction
61922
+ -------------------------------------------
61923
+ ValidatorsTest: test_size_maximum_validator
61924
+ -------------------------------------------
61925
+  (0.1ms) SAVEPOINT active_record_1
61926
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61927
+  (0.0ms) rollback transaction
61928
+  (0.1ms) begin transaction
61929
+ -------------------------------------------
61930
+ ValidatorsTest: test_size_minimum_validator
61931
+ -------------------------------------------
61932
+  (0.1ms) SAVEPOINT active_record_1
61933
+  (0.0ms) RELEASE SAVEPOINT active_record_1
61934
+  (0.1ms) rollback transaction
61935
+  (0.0ms) begin transaction
61936
+ -----------------------------------------
61937
+ ValidatorsTest: test_size_range_validator
61938
+ -----------------------------------------
61939
+  (0.1ms) SAVEPOINT active_record_1
61940
+  (0.0ms) RELEASE SAVEPOINT active_record_1
61941
+  (0.0ms) rollback transaction
61942
+  (0.0ms) begin transaction
61943
+ --------------------------------------
61944
+ AttachmentTest: test_attachment_source
61945
+ --------------------------------------
61946
+  (0.0ms) SAVEPOINT active_record_1
61947
+ 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 20:50:23.355910"], ["created_at", "2014-11-17 20:50:23.356275"], ["updated_at", "2014-11-17 20:50:23.356275"]]
61948
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61949
+  (0.0ms) SAVEPOINT active_record_1
61950
+ 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 20:50:23.355910"], ["created_at", "2014-11-17 20:50:23.358925"], ["updated_at", "2014-11-17 20:50:23.358925"]]
61951
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61952
+  (0.1ms) rollback transaction
61953
+  (0.0ms) begin transaction
61954
+ -------------------------------
61955
+ AttachmentTest: test_uri_source
61956
+ -------------------------------
61957
+  (0.1ms) SAVEPOINT active_record_1
61958
+ 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 20:50:26.771101"], ["created_at", "2014-11-17 20:50:26.771982"], ["updated_at", "2014-11-17 20:50:26.771982"]]
61959
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61960
+  (0.1ms) rollback transaction
61961
+  (0.1ms) begin transaction
61962
+ ------------------------------------
61963
+ MigrationTest: test_column_migration
61964
+ ------------------------------------
61965
+  (0.3ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
61966
+  (0.3ms) ALTER TABLE "pictures" ADD "image_filename" varchar(255)
61967
+  (0.3ms) ALTER TABLE "pictures" ADD "image_content_type" varchar(255)
61968
+  (0.2ms) ALTER TABLE "pictures" ADD "image_size" integer
61969
+  (0.2ms) ALTER TABLE "pictures" ADD "image_updated_at" datetime
61970
+  (0.1ms) SAVEPOINT active_record_1
61971
+  (1.4ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar(255), "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime) 
61972
+  (0.1ms) SELECT * FROM "pictures"
61973
+  (0.1ms) DROP TABLE "pictures"
61974
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime)
61975
+  (0.1ms) SELECT * FROM "apictures"
61976
+  (0.1ms) DROP TABLE "apictures"
61977
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61978
+  (0.0ms) SAVEPOINT active_record_1
61979
+  (0.2ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime) 
61980
+  (0.1ms) SELECT * FROM "pictures"
61981
+  (0.1ms) DROP TABLE "pictures"
61982
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime)
61983
+  (0.1ms) SELECT * FROM "apictures"
61984
+  (0.1ms) DROP TABLE "apictures"
61985
+  (0.0ms) RELEASE SAVEPOINT active_record_1
61986
+  (0.0ms) SAVEPOINT active_record_1
61987
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime) 
61988
+  (0.1ms) SELECT * FROM "pictures"
61989
+  (0.1ms) DROP TABLE "pictures"
61990
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime)
61991
+  (0.1ms) SELECT * FROM "apictures"
61992
+  (0.1ms) DROP TABLE "apictures"
61993
+  (0.0ms) RELEASE SAVEPOINT active_record_1
61994
+  (0.1ms) SAVEPOINT active_record_1
61995
+  (0.2ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime) 
61996
+  (0.1ms) SELECT * FROM "pictures"
61997
+  (0.1ms) DROP TABLE "pictures"
61998
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)
61999
+  (0.0ms) SELECT * FROM "apictures"
62000
+  (0.1ms) DROP TABLE "apictures"
62001
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62002
+  (0.2ms) rollback transaction
62003
+  (0.0ms) begin transaction
62004
+ -----------------------------------
62005
+ MigrationTest: test_table_migration
62006
+ -----------------------------------
62007
+  (0.3ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar(255), "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime)
62008
+  (0.1ms) DROP TABLE "pictures"
62009
+  (0.1ms) rollback transaction
62010
+  (0.3ms) CREATE TABLE "media" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attach_filename" varchar(255), "attach_content_type" varchar(255), "attach_size" integer, "attach_updated_at" datetime, "local_attach_filename" varchar(255), "local_attach_content_type" varchar(255), "local_attach_size" integer, "local_attach_updated_at" datetime, "s3_attach_filename" varchar(255), "s3_attach_content_type" varchar(255), "s3_attach_size" integer, "s3_attach_updated_at" datetime, "created_at" datetime, "updated_at" datetime) 
62011
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
62012
+  (0.1ms) select sqlite_version(*)
62013
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
62014
+  (0.0ms) SELECT version FROM "schema_migrations"
62015
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140808012639')
62016
+  (0.1ms) begin transaction
62017
+ --------------------------------------
62018
+ AttachmentTest: test_attachment_source
62019
+ --------------------------------------
62020
+  (0.1ms) SAVEPOINT active_record_1
62021
+ SQL (0.2ms) 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 20:53:55.115688"], ["created_at", "2014-11-17 20:53:55.118251"], ["updated_at", "2014-11-17 20:53:55.118251"]]
62022
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62023
+  (0.0ms) SAVEPOINT active_record_1
62024
+ 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 20:53:55.115688"], ["created_at", "2014-11-17 20:53:55.219378"], ["updated_at", "2014-11-17 20:53:55.219378"]]
62025
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62026
+  (0.1ms) rollback transaction
62027
+  (0.0ms) begin transaction
62028
+ -------------------------------
62029
+ AttachmentTest: test_uri_source
62030
+ -------------------------------
62031
+  (0.1ms) SAVEPOINT active_record_1
62032
+ 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 20:53:55.674734"], ["created_at", "2014-11-17 20:53:55.675578"], ["updated_at", "2014-11-17 20:53:55.675578"]]
62033
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62034
+  (0.1ms) rollback transaction
62035
+  (0.0ms) begin transaction
62036
+ ----------------------------------
62037
+ ProcessorTest: test_contain_resize
62038
+ ----------------------------------
62039
+  (0.1ms) rollback transaction
62040
+  (0.1ms) begin transaction
62041
+ --------------------------------
62042
+ ProcessorTest: test_cover_resize
62043
+ --------------------------------
62044
+  (0.1ms) rollback transaction
62045
+  (0.2ms) begin transaction
62046
+ --------------------------------
62047
+ ProcessorTest: test_force_resize
62048
+ --------------------------------
62049
+  (0.2ms) rollback transaction
62050
+  (0.1ms) begin transaction
62051
+ -----------------------------------------------------
62052
+ ValidatorsTest: test_content_type_inclusion_validator
62053
+ -----------------------------------------------------
62054
+  (0.2ms) SAVEPOINT active_record_1
62055
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62056
+  (0.0ms) rollback transaction
62057
+  (0.0ms) begin transaction
62058
+ -------------------------------------------------
62059
+ ValidatorsTest: test_content_type_regex_validator
62060
+ -------------------------------------------------
62061
+  (0.1ms) SAVEPOINT active_record_1
62062
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62063
+  (0.1ms) rollback transaction
62064
+  (0.1ms) begin transaction
62065
+ ---------------------------------------
62066
+ ValidatorsTest: test_presence_validator
62067
+ ---------------------------------------
62068
+  (0.1ms) SAVEPOINT active_record_1
62069
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62070
+  (0.0ms) rollback transaction
62071
+  (0.0ms) begin transaction
62072
+ -------------------------------------------
62073
+ ValidatorsTest: test_size_maximum_validator
62074
+ -------------------------------------------
62075
+  (0.1ms) SAVEPOINT active_record_1
62076
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62077
+  (0.0ms) rollback transaction
62078
+  (0.1ms) begin transaction
62079
+ -------------------------------------------
62080
+ ValidatorsTest: test_size_minimum_validator
62081
+ -------------------------------------------
62082
+  (0.1ms) SAVEPOINT active_record_1
62083
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62084
+  (0.0ms) rollback transaction
62085
+  (0.1ms) begin transaction
62086
+ -----------------------------------------
62087
+ ValidatorsTest: test_size_range_validator
62088
+ -----------------------------------------
62089
+  (0.1ms) SAVEPOINT active_record_1
62090
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62091
+  (0.0ms) rollback transaction
62092
+  (0.0ms) begin transaction
62093
+ ------------------------------------
62094
+ MigrationTest: test_column_migration
62095
+ ------------------------------------
62096
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
62097
+  (0.2ms) ALTER TABLE "pictures" ADD "image_filename" varchar(255)
62098
+  (0.1ms) ALTER TABLE "pictures" ADD "image_content_type" varchar(255)
62099
+  (0.1ms) ALTER TABLE "pictures" ADD "image_size" integer
62100
+  (0.1ms) ALTER TABLE "pictures" ADD "image_updated_at" datetime
62101
+  (0.1ms) SAVEPOINT active_record_1
62102
+  (1.4ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar(255), "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime) 
62103
+  (0.1ms) SELECT * FROM "pictures"
62104
+  (0.1ms) DROP TABLE "pictures"
62105
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime)
62106
+  (0.1ms) SELECT * FROM "apictures"
62107
+  (0.1ms) DROP TABLE "apictures"
62108
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62109
+  (0.0ms) SAVEPOINT active_record_1
62110
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime) 
62111
+  (0.0ms) SELECT * FROM "pictures"
62112
+  (0.1ms) DROP TABLE "pictures"
62113
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime)
62114
+  (0.1ms) SELECT * FROM "apictures"
62115
+  (0.1ms) DROP TABLE "apictures"
62116
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62117
+  (0.1ms) SAVEPOINT active_record_1
62118
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime) 
62119
+  (0.0ms) SELECT * FROM "pictures"
62120
+  (0.1ms) DROP TABLE "pictures"
62121
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime)
62122
+  (0.0ms) SELECT * FROM "apictures"
62123
+  (0.1ms) DROP TABLE "apictures"
62124
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62125
+  (0.0ms) SAVEPOINT active_record_1
62126
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime) 
62127
+  (0.0ms) SELECT * FROM "pictures"
62128
+  (0.1ms) DROP TABLE "pictures"
62129
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)
62130
+  (0.0ms) SELECT * FROM "apictures"
62131
+  (0.1ms) DROP TABLE "apictures"
62132
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62133
+  (0.1ms) rollback transaction
62134
+  (0.0ms) begin transaction
62135
+ -----------------------------------
62136
+ MigrationTest: test_table_migration
62137
+ -----------------------------------
62138
+  (0.3ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar(255), "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime)
62139
+  (0.1ms) DROP TABLE "pictures"
62140
+  (0.1ms) rollback transaction
62141
+  (0.0ms) begin transaction
62142
+ ------------------------------------------
62143
+ GeneratorsTest: test_initializer_generator
62144
+ ------------------------------------------
62145
+  (0.1ms) rollback transaction
62146
+  (0.0ms) begin transaction
62147
+ ---------------------------
62148
+ LocalStorageTest: test_crud
62149
+ ---------------------------
62150
+  (0.0ms) SAVEPOINT active_record_1
62151
+ SQL (0.3ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:53:56.071420"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 20:53:56.070939"], ["updated_at", "2014-11-17 20:53:56.071420"]]
62152
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62153
+  (0.0ms) SAVEPOINT active_record_1
62154
+ SQL (0.2ms) UPDATE "media" SET "local_attach_content_type" = ?, "local_attach_filename" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["local_attach_content_type", "image/gif"], ["local_attach_filename", "180x150.gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2014-11-17 20:53:56.075306"], ["updated_at", "2014-11-17 20:53:56.075536"]]
62155
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62156
+  (0.0ms) SAVEPOINT active_record_1
62157
+ SQL (0.1ms) DELETE FROM "media" WHERE "media"."id" = ? [["id", 1]]
62158
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62159
+  (0.1ms) rollback transaction
62160
+  (0.0ms) begin transaction
62161
+ ----------------------------------
62162
+ LocalStorageTest: test_detroy_attr
62163
+ ----------------------------------
62164
+  (0.0ms) SAVEPOINT active_record_1
62165
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:53:56.097556"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 20:53:56.097103"], ["updated_at", "2014-11-17 20:53:56.097556"]]
62166
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62167
+  (0.0ms) SAVEPOINT active_record_1
62168
+ SQL (0.1ms) UPDATE "media" SET "local_attach_content_type" = ?, "local_attach_filename" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["local_attach_content_type", nil], ["local_attach_filename", nil], ["local_attach_size", nil], ["local_attach_updated_at", nil], ["updated_at", "2014-11-17 20:53:56.101388"]]
62169
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62170
+  (0.0ms) rollback transaction
62171
+  (0.1ms) begin transaction
62172
+ -------------------------------
62173
+ LocalStorageTest: test_file_url
62174
+ -------------------------------
62175
+  (0.0ms) SAVEPOINT active_record_1
62176
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:53:56.104002"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 20:53:56.103714"], ["updated_at", "2014-11-17 20:53:56.104002"]]
62177
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62178
+  (0.1ms) rollback transaction
62179
+  (0.0ms) begin transaction
62180
+ --------------------------------
62181
+ LocalStorageTest: test_image_url
62182
+ --------------------------------
62183
+  (0.0ms) SAVEPOINT active_record_1
62184
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:53:56.107931"], ["local_attach_content_type", "image/gif"], ["local_attach_filename", "180x150.gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2014-11-17 20:53:56.107596"], ["updated_at", "2014-11-17 20:53:56.107931"]]
62185
+  (0.2ms) RELEASE SAVEPOINT active_record_1
62186
+  (0.1ms) rollback transaction
62187
+  (0.0ms) begin transaction
62188
+ --------------------------------------
62189
+ TasksTest: test_refersh_missing_styles
62190
+ --------------------------------------
62191
+  (0.1ms) SAVEPOINT active_record_1
62192
+ SQL (0.2ms) INSERT INTO "media" ("attach_content_type", "attach_filename", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_content_type", "image/gif"], ["attach_filename", "180x150.gif"], ["attach_size", 5461], ["attach_updated_at", "2014-11-17 20:53:56.552937"], ["created_at", "2014-11-17 20:53:56.553705"], ["updated_at", "2014-11-17 20:53:56.553705"]]
62193
+  (0.3ms) RELEASE SAVEPOINT active_record_1
62194
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
62195
+ Missing styles regenerated successfully.
62196
+  (0.2ms) rollback transaction
62197
+  (0.1ms) begin transaction
62198
+ ----------------------------------
62199
+ TasksTest: test_refresh_all_styles
62200
+ ----------------------------------
62201
+  (0.1ms) SAVEPOINT active_record_1
62202
+ SQL (0.1ms) INSERT INTO "media" ("attach_content_type", "attach_filename", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_content_type", "image/gif"], ["attach_filename", "180x150.gif"], ["attach_size", 5461], ["attach_updated_at", "2014-11-17 20:53:58.031384"], ["created_at", "2014-11-17 20:53:58.032132"], ["updated_at", "2014-11-17 20:53:58.032132"]]
62203
+  (0.2ms) RELEASE SAVEPOINT active_record_1
62204
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
62205
+ All styles regenerated successfully.
62206
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
62207
+ All styles regenerated successfully.
62208
+  (0.2ms) rollback transaction
62209
+  (0.4ms) CREATE TABLE "media" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attach_filename" varchar(255), "attach_content_type" varchar(255), "attach_size" integer, "attach_updated_at" datetime, "local_attach_filename" varchar(255), "local_attach_content_type" varchar(255), "local_attach_size" integer, "local_attach_updated_at" datetime, "s3_attach_filename" varchar(255), "s3_attach_content_type" varchar(255), "s3_attach_size" integer, "s3_attach_updated_at" datetime, "created_at" datetime, "updated_at" datetime) 
62210
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
62211
+  (0.1ms) select sqlite_version(*)
62212
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
62213
+  (0.0ms) SELECT version FROM "schema_migrations"
62214
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140808012639')
62215
+  (0.1ms) begin transaction
62216
+ --------------------------------------
62217
+ TasksTest: test_refersh_missing_styles
62218
+ --------------------------------------
62219
+  (0.1ms) SAVEPOINT active_record_1
62220
+ SQL (0.2ms) INSERT INTO "media" ("attach_content_type", "attach_filename", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_content_type", "image/gif"], ["attach_filename", "180x150.gif"], ["attach_size", 5461], ["attach_updated_at", "2014-11-17 20:55:35.790876"], ["created_at", "2014-11-17 20:55:35.793111"], ["updated_at", "2014-11-17 20:55:35.793111"]]
62221
+  (0.2ms) RELEASE SAVEPOINT active_record_1
62222
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
62223
+ Missing styles regenerated successfully.
62224
+  (0.2ms) rollback transaction
62225
+  (0.1ms) begin transaction
62226
+ ----------------------------------
62227
+ TasksTest: test_refresh_all_styles
62228
+ ----------------------------------
62229
+  (0.1ms) SAVEPOINT active_record_1
62230
+ SQL (0.1ms) INSERT INTO "media" ("attach_content_type", "attach_filename", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_content_type", "image/gif"], ["attach_filename", "180x150.gif"], ["attach_size", 5461], ["attach_updated_at", "2014-11-17 20:55:36.953948"], ["created_at", "2014-11-17 20:55:36.954725"], ["updated_at", "2014-11-17 20:55:36.954725"]]
62231
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62232
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
62233
+ All styles regenerated successfully.
62234
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
62235
+ All styles regenerated successfully.
62236
+  (0.2ms) rollback transaction
62237
+  (0.0ms) begin transaction
62238
+ ------------------------------------
62239
+ MigrationTest: test_column_migration
62240
+ ------------------------------------
62241
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
62242
+  (0.1ms) ALTER TABLE "pictures" ADD "image_filename" varchar(255)
62243
+  (0.1ms) ALTER TABLE "pictures" ADD "image_content_type" varchar(255)
62244
+  (0.1ms) ALTER TABLE "pictures" ADD "image_size" integer
62245
+  (0.1ms) ALTER TABLE "pictures" ADD "image_updated_at" datetime
62246
+  (0.0ms) SAVEPOINT active_record_1
62247
+  (1.4ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar(255), "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime) 
62248
+  (0.1ms) SELECT * FROM "pictures"
62249
+  (0.1ms) DROP TABLE "pictures"
62250
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime)
62251
+  (0.1ms) SELECT * FROM "apictures"
62252
+  (0.1ms) DROP TABLE "apictures"
62253
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62254
+  (0.0ms) SAVEPOINT active_record_1
62255
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime) 
62256
+  (0.1ms) SELECT * FROM "pictures"
62257
+  (0.1ms) DROP TABLE "pictures"
62258
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime)
62259
+  (0.1ms) SELECT * FROM "apictures"
62260
+  (0.1ms) DROP TABLE "apictures"
62261
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62262
+  (0.0ms) SAVEPOINT active_record_1
62263
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime) 
62264
+  (0.1ms) SELECT * FROM "pictures"
62265
+  (0.1ms) DROP TABLE "pictures"
62266
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime)
62267
+  (0.0ms) SELECT * FROM "apictures"
62268
+  (0.1ms) DROP TABLE "apictures"
62269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62270
+  (0.0ms) SAVEPOINT active_record_1
62271
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime) 
62272
+  (0.1ms) SELECT * FROM "pictures"
62273
+  (0.2ms) DROP TABLE "pictures"
62274
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)
62275
+  (0.1ms) SELECT * FROM "apictures"
62276
+  (0.1ms) DROP TABLE "apictures"
62277
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62278
+  (0.2ms) rollback transaction
62279
+  (0.1ms) begin transaction
62280
+ -----------------------------------
62281
+ MigrationTest: test_table_migration
62282
+ -----------------------------------
62283
+  (0.3ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar(255), "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime)
62284
+  (0.1ms) DROP TABLE "pictures"
62285
+  (0.0ms) rollback transaction
62286
+  (0.1ms) begin transaction
62287
+ ----------------------------------
62288
+ ProcessorTest: test_contain_resize
62289
+ ----------------------------------
62290
+  (0.3ms) rollback transaction
62291
+  (0.0ms) begin transaction
62292
+ --------------------------------
62293
+ ProcessorTest: test_cover_resize
62294
+ --------------------------------
62295
+  (0.1ms) rollback transaction
62296
+  (0.2ms) begin transaction
62297
+ --------------------------------
62298
+ ProcessorTest: test_force_resize
62299
+ --------------------------------
62300
+  (0.1ms) rollback transaction
62301
+  (0.1ms) begin transaction
62302
+ ------------------------------------------
62303
+ GeneratorsTest: test_initializer_generator
62304
+ ------------------------------------------
62305
+  (0.1ms) rollback transaction
62306
+  (0.0ms) begin transaction
62307
+ --------------------------------------
62308
+ AttachmentTest: test_attachment_source
62309
+ --------------------------------------
62310
+  (0.0ms) SAVEPOINT active_record_1
62311
+ SQL (0.3ms) 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 20:55:39.147294"], ["created_at", "2014-11-17 20:55:39.147833"], ["updated_at", "2014-11-17 20:55:39.147833"]]
62312
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62313
+  (0.1ms) SAVEPOINT active_record_1
62314
+ 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 20:55:39.147294"], ["created_at", "2014-11-17 20:55:39.151234"], ["updated_at", "2014-11-17 20:55:39.151234"]]
62315
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62316
+  (0.0ms) rollback transaction
62317
+  (0.0ms) begin transaction
62318
+ -------------------------------
62319
+ AttachmentTest: test_uri_source
62320
+ -------------------------------
62321
+  (0.1ms) SAVEPOINT active_record_1
62322
+ 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 20:55:39.528650"], ["created_at", "2014-11-17 20:55:39.529497"], ["updated_at", "2014-11-17 20:55:39.529497"]]
62323
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62324
+  (0.1ms) rollback transaction
62325
+  (0.0ms) begin transaction
62326
+ ---------------------------
62327
+ LocalStorageTest: test_crud
62328
+ ---------------------------
62329
+  (0.0ms) SAVEPOINT active_record_1
62330
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:55:39.534606"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 20:55:39.534212"], ["updated_at", "2014-11-17 20:55:39.534606"]]
62331
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62332
+  (0.1ms) SAVEPOINT active_record_1
62333
+ SQL (0.2ms) UPDATE "media" SET "local_attach_content_type" = ?, "local_attach_filename" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["local_attach_content_type", "image/gif"], ["local_attach_filename", "180x150.gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2014-11-17 20:55:39.538736"], ["updated_at", "2014-11-17 20:55:39.539105"]]
62334
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62335
+  (0.1ms) SAVEPOINT active_record_1
62336
+ SQL (0.1ms) DELETE FROM "media" WHERE "media"."id" = ? [["id", 1]]
62337
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62338
+  (0.1ms) rollback transaction
62339
+  (0.0ms) begin transaction
62340
+ ----------------------------------
62341
+ LocalStorageTest: test_detroy_attr
62342
+ ----------------------------------
62343
+  (0.0ms) SAVEPOINT active_record_1
62344
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:55:39.562108"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 20:55:39.561639"], ["updated_at", "2014-11-17 20:55:39.562108"]]
62345
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62346
+  (0.0ms) SAVEPOINT active_record_1
62347
+ SQL (0.1ms) UPDATE "media" SET "local_attach_content_type" = ?, "local_attach_filename" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["local_attach_content_type", nil], ["local_attach_filename", nil], ["local_attach_size", nil], ["local_attach_updated_at", nil], ["updated_at", "2014-11-17 20:55:39.565831"]]
62348
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62349
+  (0.1ms) rollback transaction
62350
+  (0.1ms) begin transaction
62351
+ -------------------------------
62352
+ LocalStorageTest: test_file_url
62353
+ -------------------------------
62354
+  (0.0ms) SAVEPOINT active_record_1
62355
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:55:39.568730"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 20:55:39.568320"], ["updated_at", "2014-11-17 20:55:39.568730"]]
62356
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62357
+  (0.1ms) rollback transaction
62358
+  (0.1ms) begin transaction
62359
+ --------------------------------
62360
+ LocalStorageTest: test_image_url
62361
+ --------------------------------
62362
+  (0.1ms) SAVEPOINT active_record_1
62363
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:55:39.573638"], ["local_attach_content_type", "image/gif"], ["local_attach_filename", "180x150.gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2014-11-17 20:55:39.573240"], ["updated_at", "2014-11-17 20:55:39.573638"]]
62364
+  (0.2ms) RELEASE SAVEPOINT active_record_1
62365
+  (0.1ms) rollback transaction
62366
+  (0.1ms) begin transaction
62367
+ -----------------------------------------------------
62368
+ ValidatorsTest: test_content_type_inclusion_validator
62369
+ -----------------------------------------------------
62370
+  (0.1ms) SAVEPOINT active_record_1
62371
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62372
+  (0.0ms) rollback transaction
62373
+  (0.0ms) begin transaction
62374
+ -------------------------------------------------
62375
+ ValidatorsTest: test_content_type_regex_validator
62376
+ -------------------------------------------------
62377
+  (0.1ms) SAVEPOINT active_record_1
62378
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62379
+  (0.0ms) rollback transaction
62380
+  (0.1ms) begin transaction
62381
+ ---------------------------------------
62382
+ ValidatorsTest: test_presence_validator
62383
+ ---------------------------------------
62384
+  (0.1ms) SAVEPOINT active_record_1
62385
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62386
+  (0.1ms) rollback transaction
62387
+  (0.0ms) begin transaction
62388
+ -------------------------------------------
62389
+ ValidatorsTest: test_size_maximum_validator
62390
+ -------------------------------------------
62391
+  (0.1ms) SAVEPOINT active_record_1
62392
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62393
+  (0.1ms) rollback transaction
62394
+  (0.0ms) begin transaction
62395
+ -------------------------------------------
62396
+ ValidatorsTest: test_size_minimum_validator
62397
+ -------------------------------------------
62398
+  (0.1ms) SAVEPOINT active_record_1
62399
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62400
+  (0.0ms) rollback transaction
62401
+  (0.0ms) begin transaction
62402
+ -----------------------------------------
62403
+ ValidatorsTest: test_size_range_validator
62404
+ -----------------------------------------
62405
+  (0.1ms) SAVEPOINT active_record_1
62406
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62407
+  (0.0ms) rollback transaction
62408
+  (0.3ms) CREATE TABLE "media" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attach_filename" varchar(255), "attach_content_type" varchar(255), "attach_size" integer, "attach_updated_at" datetime, "local_attach_filename" varchar(255), "local_attach_content_type" varchar(255), "local_attach_size" integer, "local_attach_updated_at" datetime, "s3_attach_filename" varchar(255), "s3_attach_content_type" varchar(255), "s3_attach_size" integer, "s3_attach_updated_at" datetime, "created_at" datetime, "updated_at" datetime) 
62409
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
62410
+  (0.1ms) select sqlite_version(*)
62411
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
62412
+  (0.0ms) SELECT version FROM "schema_migrations"
62413
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140808012639')
62414
+  (0.1ms) begin transaction
62415
+ ------------------------------------------
62416
+ GeneratorsTest: test_initializer_generator
62417
+ ------------------------------------------
62418
+  (0.1ms) rollback transaction
62419
+  (0.0ms) begin transaction
62420
+ --------------------------------------
62421
+ TasksTest: test_refersh_missing_styles
62422
+ --------------------------------------
62423
+  (0.1ms) SAVEPOINT active_record_1
62424
+ SQL (0.1ms) INSERT INTO "media" ("attach_content_type", "attach_filename", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_content_type", "image/gif"], ["attach_filename", "180x150.gif"], ["attach_size", 5461], ["attach_updated_at", "2014-11-17 20:56:34.449809"], ["created_at", "2014-11-17 20:56:34.452077"], ["updated_at", "2014-11-17 20:56:34.452077"]]
62425
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62426
+ Medium Load (0.3ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
62427
+ Missing styles regenerated successfully.
62428
+  (0.2ms) rollback transaction
62429
+  (0.0ms) begin transaction
62430
+ ----------------------------------
62431
+ TasksTest: test_refresh_all_styles
62432
+ ----------------------------------
62433
+  (0.1ms) SAVEPOINT active_record_1
62434
+ SQL (0.1ms) INSERT INTO "media" ("attach_content_type", "attach_filename", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_content_type", "image/gif"], ["attach_filename", "180x150.gif"], ["attach_size", 5461], ["attach_updated_at", "2014-11-17 20:56:36.028901"], ["created_at", "2014-11-17 20:56:36.029627"], ["updated_at", "2014-11-17 20:56:36.029627"]]
62435
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62436
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
62437
+ All styles regenerated successfully.
62438
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
62439
+ All styles regenerated successfully.
62440
+  (0.2ms) rollback transaction
62441
+  (0.1ms) begin transaction
62442
+ --------------------------------------
62443
+ AttachmentTest: test_attachment_source
62444
+ --------------------------------------
62445
+  (0.1ms) SAVEPOINT active_record_1
62446
+ 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 20:56:37.904448"], ["created_at", "2014-11-17 20:56:37.904998"], ["updated_at", "2014-11-17 20:56:37.904998"]]
62447
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62448
+  (0.0ms) SAVEPOINT active_record_1
62449
+ 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 20:56:37.904448"], ["created_at", "2014-11-17 20:56:37.908019"], ["updated_at", "2014-11-17 20:56:37.908019"]]
62450
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62451
+  (0.1ms) rollback transaction
62452
+  (0.1ms) begin transaction
62453
+ -------------------------------
62454
+ AttachmentTest: test_uri_source
62455
+ -------------------------------
62456
+  (0.1ms) SAVEPOINT active_record_1
62457
+ 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 20:56:38.364747"], ["created_at", "2014-11-17 20:56:38.365665"], ["updated_at", "2014-11-17 20:56:38.365665"]]
62458
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62459
+  (0.1ms) rollback transaction
62460
+  (0.1ms) begin transaction
62461
+ ------------------------------------
62462
+ MigrationTest: test_column_migration
62463
+ ------------------------------------
62464
+  (0.3ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)
62465
+  (0.2ms) ALTER TABLE "pictures" ADD "image_filename" varchar(255)
62466
+  (0.1ms) ALTER TABLE "pictures" ADD "image_content_type" varchar(255)
62467
+  (0.1ms) ALTER TABLE "pictures" ADD "image_size" integer
62468
+  (0.1ms) ALTER TABLE "pictures" ADD "image_updated_at" datetime
62469
+  (0.1ms) SAVEPOINT active_record_1
62470
+  (1.8ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar(255), "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime)
62471
+  (0.1ms) SELECT * FROM "pictures"
62472
+  (0.1ms) DROP TABLE "pictures"
62473
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime) 
62474
+  (0.1ms) SELECT * FROM "apictures"
62475
+  (0.2ms) DROP TABLE "apictures"
62476
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62477
+  (0.0ms) SAVEPOINT active_record_1
62478
+  (0.2ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime)
62479
+  (0.1ms) SELECT * FROM "pictures"
62480
+  (0.1ms) DROP TABLE "pictures"
62481
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime) 
62482
+  (0.1ms) SELECT * FROM "apictures"
62483
+  (0.1ms) DROP TABLE "apictures"
62484
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62485
+  (0.0ms) SAVEPOINT active_record_1
62486
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime)
62487
+  (0.1ms) SELECT * FROM "pictures"
62488
+  (0.1ms) DROP TABLE "pictures"
62489
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime) 
62490
+  (0.0ms) SELECT * FROM "apictures"
62491
+  (0.1ms) DROP TABLE "apictures"
62492
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62493
+  (0.0ms) SAVEPOINT active_record_1
62494
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime)
62495
+  (0.0ms) SELECT * FROM "pictures"
62496
+  (0.1ms) DROP TABLE "pictures"
62497
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
62498
+  (0.1ms) SELECT * FROM "apictures"
62499
+  (0.1ms) DROP TABLE "apictures"
62500
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62501
+  (0.1ms) rollback transaction
62502
+  (0.1ms) begin transaction
62503
+ -----------------------------------
62504
+ MigrationTest: test_table_migration
62505
+ -----------------------------------
62506
+  (0.6ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar(255), "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime) 
62507
+  (0.2ms) DROP TABLE "pictures"
62508
+  (0.1ms) rollback transaction
62509
+  (0.1ms) begin transaction
62510
+ -----------------------------------------------------
62511
+ ValidatorsTest: test_content_type_inclusion_validator
62512
+ -----------------------------------------------------
62513
+  (0.1ms) SAVEPOINT active_record_1
62514
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62515
+  (0.0ms) rollback transaction
62516
+  (0.0ms) begin transaction
62517
+ -------------------------------------------------
62518
+ ValidatorsTest: test_content_type_regex_validator
62519
+ -------------------------------------------------
62520
+  (0.1ms) SAVEPOINT active_record_1
62521
+  (0.2ms) RELEASE SAVEPOINT active_record_1
62522
+  (0.1ms) rollback transaction
62523
+  (0.1ms) begin transaction
62524
+ ---------------------------------------
62525
+ ValidatorsTest: test_presence_validator
62526
+ ---------------------------------------
62527
+  (0.1ms) SAVEPOINT active_record_1
62528
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62529
+  (0.0ms) rollback transaction
62530
+  (0.1ms) begin transaction
62531
+ -------------------------------------------
62532
+ ValidatorsTest: test_size_maximum_validator
62533
+ -------------------------------------------
62534
+  (0.1ms) SAVEPOINT active_record_1
62535
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62536
+  (0.1ms) rollback transaction
62537
+  (0.0ms) begin transaction
62538
+ -------------------------------------------
62539
+ ValidatorsTest: test_size_minimum_validator
62540
+ -------------------------------------------
62541
+  (0.1ms) SAVEPOINT active_record_1
62542
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62543
+  (0.1ms) rollback transaction
62544
+  (0.1ms) begin transaction
62545
+ -----------------------------------------
62546
+ ValidatorsTest: test_size_range_validator
62547
+ -----------------------------------------
62548
+  (0.2ms) SAVEPOINT active_record_1
62549
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62550
+  (0.0ms) rollback transaction
62551
+  (0.1ms) begin transaction
62552
+ ----------------------------------
62553
+ ProcessorTest: test_contain_resize
62554
+ ----------------------------------
62555
+  (0.1ms) rollback transaction
62556
+  (0.1ms) begin transaction
62557
+ --------------------------------
62558
+ ProcessorTest: test_cover_resize
62559
+ --------------------------------
62560
+  (0.1ms) rollback transaction
62561
+  (0.1ms) begin transaction
62562
+ --------------------------------
62563
+ ProcessorTest: test_force_resize
62564
+ --------------------------------
62565
+  (0.1ms) rollback transaction
62566
+  (0.1ms) begin transaction
62567
+ ---------------------------
62568
+ LocalStorageTest: test_crud
62569
+ ---------------------------
62570
+  (0.0ms) SAVEPOINT active_record_1
62571
+ SQL (0.3ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:56:38.771904"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 20:56:38.771356"], ["updated_at", "2014-11-17 20:56:38.771904"]]
62572
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62573
+  (0.0ms) SAVEPOINT active_record_1
62574
+ SQL (0.1ms) UPDATE "media" SET "local_attach_content_type" = ?, "local_attach_filename" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["local_attach_content_type", "image/gif"], ["local_attach_filename", "180x150.gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2014-11-17 20:56:38.776333"], ["updated_at", "2014-11-17 20:56:38.776546"]]
62575
+  (0.2ms) RELEASE SAVEPOINT active_record_1
62576
+  (0.0ms) SAVEPOINT active_record_1
62577
+ SQL (0.1ms) DELETE FROM "media" WHERE "media"."id" = ? [["id", 1]]
62578
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62579
+  (0.1ms) rollback transaction
62580
+  (0.1ms) begin transaction
62581
+ ----------------------------------
62582
+ LocalStorageTest: test_detroy_attr
62583
+ ----------------------------------
62584
+  (0.0ms) SAVEPOINT active_record_1
62585
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:56:38.798351"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 20:56:38.797840"], ["updated_at", "2014-11-17 20:56:38.798351"]]
62586
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62587
+  (0.0ms) SAVEPOINT active_record_1
62588
+ SQL (0.1ms) UPDATE "media" SET "local_attach_content_type" = ?, "local_attach_filename" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["local_attach_content_type", nil], ["local_attach_filename", nil], ["local_attach_size", nil], ["local_attach_updated_at", nil], ["updated_at", "2014-11-17 20:56:38.802287"]]
62589
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62590
+  (0.1ms) rollback transaction
62591
+  (0.1ms) begin transaction
62592
+ -------------------------------
62593
+ LocalStorageTest: test_file_url
62594
+ -------------------------------
62595
+  (0.1ms) SAVEPOINT active_record_1
62596
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:56:38.805876"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 20:56:38.805393"], ["updated_at", "2014-11-17 20:56:38.805876"]]
62597
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62598
+  (0.1ms) rollback transaction
62599
+  (0.1ms) begin transaction
62600
+ --------------------------------
62601
+ LocalStorageTest: test_image_url
62602
+ --------------------------------
62603
+  (0.0ms) SAVEPOINT active_record_1
62604
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 20:56:38.821643"], ["local_attach_content_type", "image/gif"], ["local_attach_filename", "180x150.gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2014-11-17 20:56:38.810295"], ["updated_at", "2014-11-17 20:56:38.821643"]]
62605
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62606
+  (0.1ms) rollback transaction
62607
+  (0.3ms) CREATE TABLE "media" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attach_filename" varchar(255), "attach_content_type" varchar(255), "attach_size" integer, "attach_updated_at" datetime, "local_attach_filename" varchar(255), "local_attach_content_type" varchar(255), "local_attach_size" integer, "local_attach_updated_at" datetime, "s3_attach_filename" varchar(255), "s3_attach_content_type" varchar(255), "s3_attach_size" integer, "s3_attach_updated_at" datetime, "created_at" datetime, "updated_at" datetime) 
62608
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
62609
+  (0.1ms) select sqlite_version(*)
62610
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
62611
+  (0.1ms) SELECT version FROM "schema_migrations"
62612
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140808012639')
62613
+  (0.1ms) begin transaction
62614
+ --------------------------------------
62615
+ TasksTest: test_refersh_missing_styles
62616
+ --------------------------------------
62617
+  (0.1ms) SAVEPOINT active_record_1
62618
+ SQL (0.2ms) INSERT INTO "media" ("attach_content_type", "attach_filename", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_content_type", "image/gif"], ["attach_filename", "180x150.gif"], ["attach_size", 5461], ["attach_updated_at", "2014-11-17 21:03:53.474923"], ["created_at", "2014-11-17 21:03:53.477094"], ["updated_at", "2014-11-17 21:03:53.477094"]]
62619
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62620
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
62621
+ Missing styles regenerated successfully.
62622
+  (0.2ms) rollback transaction
62623
+  (0.0ms) begin transaction
62624
+ ----------------------------------
62625
+ TasksTest: test_refresh_all_styles
62626
+ ----------------------------------
62627
+  (0.1ms) SAVEPOINT active_record_1
62628
+ SQL (0.1ms) INSERT INTO "media" ("attach_content_type", "attach_filename", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_content_type", "image/gif"], ["attach_filename", "180x150.gif"], ["attach_size", 5461], ["attach_updated_at", "2014-11-17 21:03:55.035409"], ["created_at", "2014-11-17 21:03:55.036155"], ["updated_at", "2014-11-17 21:03:55.036155"]]
62629
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62630
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
62631
+ All styles regenerated successfully.
62632
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
62633
+ All styles regenerated successfully.
62634
+  (0.2ms) rollback transaction
62635
+  (0.1ms) begin transaction
62636
+ ------------------------------------------
62637
+ GeneratorsTest: test_initializer_generator
62638
+ ------------------------------------------
62639
+  (0.1ms) rollback transaction
62640
+  (0.1ms) begin transaction
62641
+ --------------------------------------
62642
+ AttachmentTest: test_attachment_source
62643
+ --------------------------------------
62644
+  (0.1ms) SAVEPOINT active_record_1
62645
+ 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:03:56.900818"], ["created_at", "2014-11-17 21:03:56.901312"], ["updated_at", "2014-11-17 21:03:56.901312"]]
62646
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62647
+  (0.0ms) SAVEPOINT active_record_1
62648
+ 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:03:56.900818"], ["created_at", "2014-11-17 21:03:56.903873"], ["updated_at", "2014-11-17 21:03:56.903873"]]
62649
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62650
+  (0.1ms) rollback transaction
62651
+  (0.0ms) begin transaction
62652
+ -------------------------------
62653
+ AttachmentTest: test_uri_source
62654
+ -------------------------------
62655
+  (0.1ms) SAVEPOINT active_record_1
62656
+ 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:03:57.322123"], ["created_at", "2014-11-17 21:03:57.323154"], ["updated_at", "2014-11-17 21:03:57.323154"]]
62657
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62658
+  (0.1ms) rollback transaction
62659
+  (0.0ms) begin transaction
62660
+ ----------------------------------
62661
+ ProcessorTest: test_contain_resize
62662
+ ----------------------------------
62663
+  (0.1ms) rollback transaction
62664
+  (0.1ms) begin transaction
62665
+ --------------------------------
62666
+ ProcessorTest: test_cover_resize
62667
+ --------------------------------
62668
+  (0.1ms) rollback transaction
62669
+  (0.1ms) begin transaction
62670
+ --------------------------------
62671
+ ProcessorTest: test_force_resize
62672
+ --------------------------------
62673
+  (0.1ms) rollback transaction
62674
+  (0.1ms) begin transaction
62675
+ ---------------------------
62676
+ LocalStorageTest: test_crud
62677
+ ---------------------------
62678
+  (0.1ms) SAVEPOINT active_record_1
62679
+ SQL (0.2ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:03:57.639471"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 21:03:57.638821"], ["updated_at", "2014-11-17 21:03:57.639471"]]
62680
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62681
+  (0.0ms) SAVEPOINT active_record_1
62682
+ SQL (0.1ms) UPDATE "media" SET "local_attach_content_type" = ?, "local_attach_filename" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["local_attach_content_type", "image/gif"], ["local_attach_filename", "180x150.gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2014-11-17 21:03:57.643734"], ["updated_at", "2014-11-17 21:03:57.644009"]]
62683
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62684
+  (0.1ms) SAVEPOINT active_record_1
62685
+ SQL (0.2ms) DELETE FROM "media" WHERE "media"."id" = ? [["id", 1]]
62686
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62687
+  (0.1ms) rollback transaction
62688
+  (0.1ms) begin transaction
62689
+ ----------------------------------
62690
+ LocalStorageTest: test_detroy_attr
62691
+ ----------------------------------
62692
+  (0.1ms) SAVEPOINT active_record_1
62693
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:03:57.666780"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 21:03:57.666261"], ["updated_at", "2014-11-17 21:03:57.666780"]]
62694
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62695
+  (0.0ms) SAVEPOINT active_record_1
62696
+ SQL (0.1ms) UPDATE "media" SET "local_attach_content_type" = ?, "local_attach_filename" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["local_attach_content_type", nil], ["local_attach_filename", nil], ["local_attach_size", nil], ["local_attach_updated_at", nil], ["updated_at", "2014-11-17 21:03:57.670488"]]
62697
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62698
+  (0.1ms) rollback transaction
62699
+  (0.0ms) begin transaction
62700
+ -------------------------------
62701
+ LocalStorageTest: test_file_url
62702
+ -------------------------------
62703
+  (0.1ms) SAVEPOINT active_record_1
62704
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:03:57.673922"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 21:03:57.673408"], ["updated_at", "2014-11-17 21:03:57.673922"]]
62705
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62706
+  (0.1ms) rollback transaction
62707
+  (0.1ms) begin transaction
62708
+ --------------------------------
62709
+ LocalStorageTest: test_image_url
62710
+ --------------------------------
62711
+  (0.1ms) SAVEPOINT active_record_1
62712
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:03:57.680375"], ["local_attach_content_type", "image/gif"], ["local_attach_filename", "180x150.gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2014-11-17 21:03:57.679967"], ["updated_at", "2014-11-17 21:03:57.680375"]]
62713
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62714
+  (0.1ms) rollback transaction
62715
+  (0.1ms) begin transaction
62716
+ -----------------------------------------------------
62717
+ ValidatorsTest: test_content_type_inclusion_validator
62718
+ -----------------------------------------------------
62719
+  (0.1ms) SAVEPOINT active_record_1
62720
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62721
+  (0.1ms) rollback transaction
62722
+  (0.2ms) begin transaction
62723
+ -------------------------------------------------
62724
+ ValidatorsTest: test_content_type_regex_validator
62725
+ -------------------------------------------------
62726
+  (0.1ms) SAVEPOINT active_record_1
62727
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62728
+  (0.0ms) rollback transaction
62729
+  (0.0ms) begin transaction
62730
+ ---------------------------------------
62731
+ ValidatorsTest: test_presence_validator
62732
+ ---------------------------------------
62733
+  (0.1ms) SAVEPOINT active_record_1
62734
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62735
+  (0.0ms) rollback transaction
62736
+  (0.1ms) begin transaction
62737
+ -------------------------------------------
62738
+ ValidatorsTest: test_size_maximum_validator
62739
+ -------------------------------------------
62740
+  (0.1ms) SAVEPOINT active_record_1
62741
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62742
+  (0.0ms) rollback transaction
62743
+  (0.1ms) begin transaction
62744
+ -------------------------------------------
62745
+ ValidatorsTest: test_size_minimum_validator
62746
+ -------------------------------------------
62747
+  (0.1ms) SAVEPOINT active_record_1
62748
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62749
+  (0.0ms) rollback transaction
62750
+  (0.0ms) begin transaction
62751
+ -----------------------------------------
62752
+ ValidatorsTest: test_size_range_validator
62753
+ -----------------------------------------
62754
+  (0.1ms) SAVEPOINT active_record_1
62755
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62756
+  (0.0ms) rollback transaction
62757
+  (0.1ms) begin transaction
62758
+ ------------------------------------
62759
+ MigrationTest: test_column_migration
62760
+ ------------------------------------
62761
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
62762
+  (0.2ms) ALTER TABLE "pictures" ADD "image_filename" varchar(255)
62763
+  (0.1ms) ALTER TABLE "pictures" ADD "image_content_type" varchar(255)
62764
+  (0.1ms) ALTER TABLE "pictures" ADD "image_size" integer
62765
+  (0.1ms) ALTER TABLE "pictures" ADD "image_updated_at" datetime
62766
+  (0.1ms) SAVEPOINT active_record_1
62767
+  (1.4ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar(255), "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime) 
62768
+  (0.1ms) SELECT * FROM "pictures"
62769
+  (0.1ms) DROP TABLE "pictures"
62770
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime)
62771
+  (0.1ms) SELECT * FROM "apictures"
62772
+  (0.2ms) DROP TABLE "apictures"
62773
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62774
+  (0.0ms) SAVEPOINT active_record_1
62775
+  (0.2ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime) 
62776
+  (0.1ms) SELECT * FROM "pictures"
62777
+  (0.1ms) DROP TABLE "pictures"
62778
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime)
62779
+  (0.1ms) SELECT * FROM "apictures"
62780
+  (0.1ms) DROP TABLE "apictures"
62781
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62782
+  (0.0ms) SAVEPOINT active_record_1
62783
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime) 
62784
+  (0.0ms) SELECT * FROM "pictures"
62785
+  (0.1ms) DROP TABLE "pictures"
62786
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime)
62787
+  (0.1ms) SELECT * FROM "apictures"
62788
+  (0.1ms) DROP TABLE "apictures"
62789
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62790
+  (0.1ms) SAVEPOINT active_record_1
62791
+  (0.2ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime) 
62792
+  (0.1ms) SELECT * FROM "pictures"
62793
+  (0.1ms) DROP TABLE "pictures"
62794
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)
62795
+  (0.1ms) SELECT * FROM "apictures"
62796
+  (0.1ms) DROP TABLE "apictures"
62797
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62798
+  (0.1ms) rollback transaction
62799
+  (0.0ms) begin transaction
62800
+ -----------------------------------
62801
+ MigrationTest: test_table_migration
62802
+ -----------------------------------
62803
+  (0.3ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar(255), "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime)
62804
+  (0.1ms) DROP TABLE "pictures"
62805
+  (0.1ms) rollback transaction
62806
+  (0.1ms) begin transaction
62807
+ -------------------------------
62808
+ S3StorageTest: test_detroy_attr
62809
+ -------------------------------
62810
+  (0.1ms) SAVEPOINT active_record_1
62811
+ SQL (0.3ms) INSERT INTO "media" ("created_at", "s3_attach_content_type", "s3_attach_filename", "s3_attach_size", "s3_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:03:58.201236"], ["s3_attach_content_type", "text/plain"], ["s3_attach_filename", "file.txt"], ["s3_attach_size", 11], ["s3_attach_updated_at", "2014-11-17 21:03:58.200771"], ["updated_at", "2014-11-17 21:03:58.201236"]]
62812
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62813
+  (0.1ms) SAVEPOINT active_record_1
62814
+ SQL (0.1ms) UPDATE "media" SET "s3_attach_content_type" = ?, "s3_attach_filename" = ?, "s3_attach_size" = ?, "s3_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["s3_attach_content_type", nil], ["s3_attach_filename", nil], ["s3_attach_size", nil], ["s3_attach_updated_at", nil], ["updated_at", "2014-11-17 21:04:00.165107"]]
62815
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62816
+  (0.1ms) rollback transaction
62817
+  (0.0ms) begin transaction
62818
+ ----------------------------
62819
+ S3StorageTest: test_file_url
62820
+ ----------------------------
62821
+  (0.0ms) SAVEPOINT active_record_1
62822
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "s3_attach_content_type", "s3_attach_filename", "s3_attach_size", "s3_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:04:00.693789"], ["s3_attach_content_type", "text/plain"], ["s3_attach_filename", "file.txt"], ["s3_attach_size", 11], ["s3_attach_updated_at", "2014-11-17 21:04:00.693378"], ["updated_at", "2014-11-17 21:04:00.693789"]]
62823
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62824
+  (0.2ms) rollback transaction
62825
+  (0.1ms) begin transaction
62826
+ -----------------------------
62827
+ S3StorageTest: test_image_url
62828
+ -----------------------------
62829
+  (0.1ms) SAVEPOINT active_record_1
62830
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "s3_attach_content_type", "s3_attach_filename", "s3_attach_size", "s3_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:04:01.088657"], ["s3_attach_content_type", "image/gif"], ["s3_attach_filename", "180x150.gif"], ["s3_attach_size", 5461], ["s3_attach_updated_at", "2014-11-17 21:04:01.088094"], ["updated_at", "2014-11-17 21:04:01.088657"]]
62831
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62832
+  (0.2ms) rollback transaction
62833
+  (0.1ms) begin transaction
62834
+ ---------------------------
62835
+ S3StorageTest: test_storage
62836
+ ---------------------------
62837
+  (0.1ms) SAVEPOINT active_record_1
62838
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "s3_attach_content_type", "s3_attach_filename", "s3_attach_size", "s3_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:04:04.154980"], ["s3_attach_content_type", "text/plain"], ["s3_attach_filename", "file.txt"], ["s3_attach_size", 11], ["s3_attach_updated_at", "2014-11-17 21:04:04.154491"], ["updated_at", "2014-11-17 21:04:04.154980"]]
62839
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62840
+  (0.1ms) SAVEPOINT active_record_1
62841
+ SQL (0.1ms) UPDATE "media" SET "s3_attach_content_type" = ?, "s3_attach_filename" = ?, "s3_attach_size" = ?, "s3_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["s3_attach_content_type", "image/gif"], ["s3_attach_filename", "180x150.gif"], ["s3_attach_size", 5461], ["s3_attach_updated_at", "2014-11-17 21:04:04.888127"], ["updated_at", "2014-11-17 21:04:04.888405"]]
62842
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62843
+  (0.1ms) SAVEPOINT active_record_1
62844
+ SQL (0.1ms) DELETE FROM "media" WHERE "media"."id" = ? [["id", 1]]
62845
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62846
+  (0.1ms) rollback transaction
62847
+  (0.3ms) CREATE TABLE "media" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attach_filename" varchar(255), "attach_content_type" varchar(255), "attach_size" integer, "attach_updated_at" datetime, "local_attach_filename" varchar(255), "local_attach_content_type" varchar(255), "local_attach_size" integer, "local_attach_updated_at" datetime, "s3_attach_filename" varchar(255), "s3_attach_content_type" varchar(255), "s3_attach_size" integer, "s3_attach_updated_at" datetime, "created_at" datetime, "updated_at" datetime) 
62848
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
62849
+  (0.1ms) select sqlite_version(*)
62850
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
62851
+  (0.1ms) SELECT version FROM "schema_migrations"
62852
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140808012639')
62853
+  (0.1ms) begin transaction
62854
+ -------------------------------
62855
+ S3StorageTest: test_detroy_attr
62856
+ -------------------------------
62857
+  (0.1ms) SAVEPOINT active_record_1
62858
+ SQL (0.2ms) INSERT INTO "media" ("created_at", "s3_attach_content_type", "s3_attach_filename", "s3_attach_size", "s3_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:05:00.244797"], ["s3_attach_content_type", "text/plain"], ["s3_attach_filename", "file.txt"], ["s3_attach_size", 11], ["s3_attach_updated_at", "2014-11-17 21:05:00.242263"], ["updated_at", "2014-11-17 21:05:00.244797"]]
62859
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62860
+  (0.1ms) SAVEPOINT active_record_1
62861
+ SQL (0.3ms) UPDATE "media" SET "s3_attach_content_type" = ?, "s3_attach_filename" = ?, "s3_attach_size" = ?, "s3_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["s3_attach_content_type", nil], ["s3_attach_filename", nil], ["s3_attach_size", nil], ["s3_attach_updated_at", nil], ["updated_at", "2014-11-17 21:05:01.793149"]]
62862
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62863
+  (0.1ms) rollback transaction
62864
+  (0.1ms) begin transaction
62865
+ ----------------------------
62866
+ S3StorageTest: test_file_url
62867
+ ----------------------------
62868
+  (0.1ms) SAVEPOINT active_record_1
62869
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "s3_attach_content_type", "s3_attach_filename", "s3_attach_size", "s3_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:05:02.338919"], ["s3_attach_content_type", "text/plain"], ["s3_attach_filename", "file.txt"], ["s3_attach_size", 11], ["s3_attach_updated_at", "2014-11-17 21:05:02.338468"], ["updated_at", "2014-11-17 21:05:02.338919"]]
62870
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62871
+  (0.3ms) rollback transaction
62872
+  (0.1ms) begin transaction
62873
+ -----------------------------
62874
+ S3StorageTest: test_image_url
62875
+ -----------------------------
62876
+  (0.1ms) SAVEPOINT active_record_1
62877
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "s3_attach_content_type", "s3_attach_filename", "s3_attach_size", "s3_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:05:02.731730"], ["s3_attach_content_type", "image/gif"], ["s3_attach_filename", "180x150.gif"], ["s3_attach_size", 5461], ["s3_attach_updated_at", "2014-11-17 21:05:02.731170"], ["updated_at", "2014-11-17 21:05:02.731730"]]
62878
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62879
+  (0.1ms) rollback transaction
62880
+  (0.1ms) begin transaction
62881
+ ---------------------------
62882
+ S3StorageTest: test_storage
62883
+ ---------------------------
62884
+  (0.1ms) SAVEPOINT active_record_1
62885
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "s3_attach_content_type", "s3_attach_filename", "s3_attach_size", "s3_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:05:06.487667"], ["s3_attach_content_type", "text/plain"], ["s3_attach_filename", "file.txt"], ["s3_attach_size", 11], ["s3_attach_updated_at", "2014-11-17 21:05:06.487153"], ["updated_at", "2014-11-17 21:05:06.487667"]]
62886
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62887
+  (0.1ms) SAVEPOINT active_record_1
62888
+ SQL (0.1ms) UPDATE "media" SET "s3_attach_content_type" = ?, "s3_attach_filename" = ?, "s3_attach_size" = ?, "s3_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["s3_attach_content_type", "image/gif"], ["s3_attach_filename", "180x150.gif"], ["s3_attach_size", 5461], ["s3_attach_updated_at", "2014-11-17 21:05:07.221339"], ["updated_at", "2014-11-17 21:05:07.221623"]]
62889
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62890
+  (0.1ms) SAVEPOINT active_record_1
62891
+ SQL (0.1ms) DELETE FROM "media" WHERE "media"."id" = ? [["id", 1]]
62892
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62893
+  (0.1ms) rollback transaction
62894
+  (0.1ms) begin transaction
62895
+ ---------------------------
62896
+ LocalStorageTest: test_crud
62897
+ ---------------------------
62898
+  (0.1ms) SAVEPOINT active_record_1
62899
+ SQL (0.2ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:05:11.697690"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 21:05:11.697049"], ["updated_at", "2014-11-17 21:05:11.697690"]]
62900
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62901
+  (0.1ms) SAVEPOINT active_record_1
62902
+ SQL (0.1ms) UPDATE "media" SET "local_attach_content_type" = ?, "local_attach_filename" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["local_attach_content_type", "image/gif"], ["local_attach_filename", "180x150.gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2014-11-17 21:05:11.702149"], ["updated_at", "2014-11-17 21:05:11.702431"]]
62903
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62904
+  (0.1ms) SAVEPOINT active_record_1
62905
+ SQL (0.1ms) DELETE FROM "media" WHERE "media"."id" = ? [["id", 1]]
62906
+  (0.2ms) RELEASE SAVEPOINT active_record_1
62907
+  (0.1ms) rollback transaction
62908
+  (0.1ms) begin transaction
62909
+ ----------------------------------
62910
+ LocalStorageTest: test_detroy_attr
62911
+ ----------------------------------
62912
+  (0.1ms) SAVEPOINT active_record_1
62913
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:05:11.725743"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 21:05:11.725056"], ["updated_at", "2014-11-17 21:05:11.725743"]]
62914
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62915
+  (0.1ms) SAVEPOINT active_record_1
62916
+ SQL (0.1ms) UPDATE "media" SET "local_attach_content_type" = ?, "local_attach_filename" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["local_attach_content_type", nil], ["local_attach_filename", nil], ["local_attach_size", nil], ["local_attach_updated_at", nil], ["updated_at", "2014-11-17 21:05:11.730397"]]
62917
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62918
+  (0.1ms) rollback transaction
62919
+  (0.0ms) begin transaction
62920
+ -------------------------------
62921
+ LocalStorageTest: test_file_url
62922
+ -------------------------------
62923
+  (0.1ms) SAVEPOINT active_record_1
62924
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:05:11.734070"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 21:05:11.733639"], ["updated_at", "2014-11-17 21:05:11.734070"]]
62925
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62926
+  (0.1ms) rollback transaction
62927
+  (0.1ms) begin transaction
62928
+ --------------------------------
62929
+ LocalStorageTest: test_image_url
62930
+ --------------------------------
62931
+  (0.1ms) SAVEPOINT active_record_1
62932
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:05:11.738748"], ["local_attach_content_type", "image/gif"], ["local_attach_filename", "180x150.gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2014-11-17 21:05:11.738373"], ["updated_at", "2014-11-17 21:05:11.738748"]]
62933
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62934
+  (0.1ms) rollback transaction
62935
+  (0.1ms) begin transaction
62936
+ --------------------------------------
62937
+ AttachmentTest: test_attachment_source
62938
+ --------------------------------------
62939
+  (0.1ms) SAVEPOINT active_record_1
62940
+ 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:05:12.175216"], ["created_at", "2014-11-17 21:05:12.175752"], ["updated_at", "2014-11-17 21:05:12.175752"]]
62941
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62942
+  (0.0ms) SAVEPOINT active_record_1
62943
+ 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:05:12.175216"], ["created_at", "2014-11-17 21:05:12.179087"], ["updated_at", "2014-11-17 21:05:12.179087"]]
62944
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62945
+  (0.1ms) rollback transaction
62946
+  (0.0ms) begin transaction
62947
+ -------------------------------
62948
+ AttachmentTest: test_uri_source
62949
+ -------------------------------
62950
+  (0.1ms) SAVEPOINT active_record_1
62951
+ SQL (0.2ms) 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:05:12.616323"], ["created_at", "2014-11-17 21:05:12.617248"], ["updated_at", "2014-11-17 21:05:12.617248"]]
62952
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62953
+  (0.1ms) rollback transaction
62954
+  (0.1ms) begin transaction
62955
+ -----------------------------------------------------
62956
+ ValidatorsTest: test_content_type_inclusion_validator
62957
+ -----------------------------------------------------
62958
+  (0.1ms) SAVEPOINT active_record_1
62959
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62960
+  (0.2ms) rollback transaction
62961
+  (0.0ms) begin transaction
62962
+ -------------------------------------------------
62963
+ ValidatorsTest: test_content_type_regex_validator
62964
+ -------------------------------------------------
62965
+  (0.1ms) SAVEPOINT active_record_1
62966
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62967
+  (0.0ms) rollback transaction
62968
+  (0.1ms) begin transaction
62969
+ ---------------------------------------
62970
+ ValidatorsTest: test_presence_validator
62971
+ ---------------------------------------
62972
+  (0.1ms) SAVEPOINT active_record_1
62973
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62974
+  (0.0ms) rollback transaction
62975
+  (0.1ms) begin transaction
62976
+ -------------------------------------------
62977
+ ValidatorsTest: test_size_maximum_validator
62978
+ -------------------------------------------
62979
+  (0.1ms) SAVEPOINT active_record_1
62980
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62981
+  (0.0ms) rollback transaction
62982
+  (0.1ms) begin transaction
62983
+ -------------------------------------------
62984
+ ValidatorsTest: test_size_minimum_validator
62985
+ -------------------------------------------
62986
+  (0.1ms) SAVEPOINT active_record_1
62987
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62988
+  (0.2ms) rollback transaction
62989
+  (0.1ms) begin transaction
62990
+ -----------------------------------------
62991
+ ValidatorsTest: test_size_range_validator
62992
+ -----------------------------------------
62993
+  (0.1ms) SAVEPOINT active_record_1
62994
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62995
+  (0.0ms) rollback transaction
62996
+  (0.0ms) begin transaction
62997
+ ----------------------------------
62998
+ ProcessorTest: test_contain_resize
62999
+ ----------------------------------
63000
+  (0.1ms) rollback transaction
63001
+  (0.1ms) begin transaction
63002
+ --------------------------------
63003
+ ProcessorTest: test_cover_resize
63004
+ --------------------------------
63005
+  (0.1ms) rollback transaction
63006
+  (0.1ms) begin transaction
63007
+ --------------------------------
63008
+ ProcessorTest: test_force_resize
63009
+ --------------------------------
63010
+  (0.2ms) rollback transaction
63011
+  (0.1ms) begin transaction
63012
+ ------------------------------------------
63013
+ GeneratorsTest: test_initializer_generator
63014
+ ------------------------------------------
63015
+  (0.2ms) rollback transaction
63016
+  (0.1ms) begin transaction
63017
+ ------------------------------------
63018
+ MigrationTest: test_column_migration
63019
+ ------------------------------------
63020
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
63021
+  (0.2ms) ALTER TABLE "pictures" ADD "image_filename" varchar(255)
63022
+  (0.2ms) ALTER TABLE "pictures" ADD "image_content_type" varchar(255)
63023
+  (0.1ms) ALTER TABLE "pictures" ADD "image_size" integer
63024
+  (0.1ms) ALTER TABLE "pictures" ADD "image_updated_at" datetime
63025
+  (0.1ms) SAVEPOINT active_record_1
63026
+  (1.5ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar(255), "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime) 
63027
+  (0.1ms) SELECT * FROM "pictures"
63028
+  (0.2ms) DROP TABLE "pictures"
63029
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime)
63030
+  (0.1ms) SELECT * FROM "apictures"
63031
+  (0.2ms) DROP TABLE "apictures"
63032
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63033
+  (0.0ms) SAVEPOINT active_record_1
63034
+  (0.2ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime) 
63035
+  (0.1ms) SELECT * FROM "pictures"
63036
+  (0.1ms) DROP TABLE "pictures"
63037
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime)
63038
+  (0.1ms) SELECT * FROM "apictures"
63039
+  (0.2ms) DROP TABLE "apictures"
63040
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63041
+  (0.0ms) SAVEPOINT active_record_1
63042
+  (0.2ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime) 
63043
+  (0.1ms) SELECT * FROM "pictures"
63044
+  (0.1ms) DROP TABLE "pictures"
63045
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime)
63046
+  (0.1ms) SELECT * FROM "apictures"
63047
+  (0.1ms) DROP TABLE "apictures"
63048
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63049
+  (0.0ms) SAVEPOINT active_record_1
63050
+  (0.1ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime) 
63051
+  (0.1ms) SELECT * FROM "pictures"
63052
+  (0.1ms) DROP TABLE "pictures"
63053
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)
63054
+  (0.0ms) SELECT * FROM "apictures"
63055
+  (0.1ms) DROP TABLE "apictures"
63056
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63057
+  (0.1ms) rollback transaction
63058
+  (0.0ms) begin transaction
63059
+ -----------------------------------
63060
+ MigrationTest: test_table_migration
63061
+ -----------------------------------
63062
+  (0.3ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar(255), "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime)
63063
+  (0.2ms) DROP TABLE "pictures"
63064
+  (0.1ms) rollback transaction
63065
+  (0.0ms) begin transaction
63066
+ --------------------------------------
63067
+ TasksTest: test_refersh_missing_styles
63068
+ --------------------------------------
63069
+  (0.1ms) SAVEPOINT active_record_1
63070
+ SQL (0.3ms) INSERT INTO "media" ("attach_content_type", "attach_filename", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_content_type", "image/gif"], ["attach_filename", "180x150.gif"], ["attach_size", 5461], ["attach_updated_at", "2014-11-17 21:05:13.069738"], ["created_at", "2014-11-17 21:05:13.070455"], ["updated_at", "2014-11-17 21:05:13.070455"]]
63071
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63072
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
63073
+ Missing styles regenerated successfully.
63074
+  (0.2ms) rollback transaction
63075
+  (0.1ms) begin transaction
63076
+ ----------------------------------
63077
+ TasksTest: test_refresh_all_styles
63078
+ ----------------------------------
63079
+  (0.1ms) SAVEPOINT active_record_1
63080
+ SQL (0.1ms) INSERT INTO "media" ("attach_content_type", "attach_filename", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_content_type", "image/gif"], ["attach_filename", "180x150.gif"], ["attach_size", 5461], ["attach_updated_at", "2014-11-17 21:05:14.560878"], ["created_at", "2014-11-17 21:05:14.561579"], ["updated_at", "2014-11-17 21:05:14.561579"]]
63081
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63082
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
63083
+ All styles regenerated successfully.
63084
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
63085
+ All styles regenerated successfully.
63086
+  (0.2ms) rollback transaction
63087
+  (0.4ms) CREATE TABLE "media" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attach_filename" varchar(255), "attach_content_type" varchar(255), "attach_size" integer, "attach_updated_at" datetime, "local_attach_filename" varchar(255), "local_attach_content_type" varchar(255), "local_attach_size" integer, "local_attach_updated_at" datetime, "s3_attach_filename" varchar(255), "s3_attach_content_type" varchar(255), "s3_attach_size" integer, "s3_attach_updated_at" datetime, "created_at" datetime, "updated_at" datetime) 
63088
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
63089
+  (0.1ms) select sqlite_version(*)
63090
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
63091
+  (0.0ms) SELECT version FROM "schema_migrations"
63092
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140808012639')
63093
+  (0.1ms) begin transaction
63094
+ -------------------------------
63095
+ S3StorageTest: test_detroy_attr
63096
+ -------------------------------
63097
+  (0.1ms) SAVEPOINT active_record_1
63098
+ SQL (0.2ms) INSERT INTO "media" ("created_at", "s3_attach_content_type", "s3_attach_filename", "s3_attach_size", "s3_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:05:47.358888"], ["s3_attach_content_type", "text/plain"], ["s3_attach_filename", "file.txt"], ["s3_attach_size", 11], ["s3_attach_updated_at", "2014-11-17 21:05:47.356350"], ["updated_at", "2014-11-17 21:05:47.358888"]]
63099
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63100
+  (0.1ms) SAVEPOINT active_record_1
63101
+ SQL (0.1ms) UPDATE "media" SET "s3_attach_content_type" = ?, "s3_attach_filename" = ?, "s3_attach_size" = ?, "s3_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["s3_attach_content_type", nil], ["s3_attach_filename", nil], ["s3_attach_size", nil], ["s3_attach_updated_at", nil], ["updated_at", "2014-11-17 21:05:48.906640"]]
63102
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63103
+  (0.1ms) rollback transaction
63104
+  (0.1ms) begin transaction
63105
+ ----------------------------
63106
+ S3StorageTest: test_file_url
63107
+ ----------------------------
63108
+  (0.0ms) SAVEPOINT active_record_1
63109
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "s3_attach_content_type", "s3_attach_filename", "s3_attach_size", "s3_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:05:49.435592"], ["s3_attach_content_type", "text/plain"], ["s3_attach_filename", "file.txt"], ["s3_attach_size", 11], ["s3_attach_updated_at", "2014-11-17 21:05:49.435221"], ["updated_at", "2014-11-17 21:05:49.435592"]]
63110
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63111
+  (0.1ms) rollback transaction
63112
+  (0.0ms) begin transaction
63113
+ -----------------------------
63114
+ S3StorageTest: test_image_url
63115
+ -----------------------------
63116
+  (0.0ms) SAVEPOINT active_record_1
63117
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "s3_attach_content_type", "s3_attach_filename", "s3_attach_size", "s3_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:05:49.820801"], ["s3_attach_content_type", "image/gif"], ["s3_attach_filename", "180x150.gif"], ["s3_attach_size", 5461], ["s3_attach_updated_at", "2014-11-17 21:05:49.820487"], ["updated_at", "2014-11-17 21:05:49.820801"]]
63118
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63119
+  (0.1ms) rollback transaction
63120
+  (0.1ms) begin transaction
63121
+ ---------------------------
63122
+ S3StorageTest: test_storage
63123
+ ---------------------------
63124
+  (0.1ms) SAVEPOINT active_record_1
63125
+ SQL (0.2ms) INSERT INTO "media" ("created_at", "s3_attach_content_type", "s3_attach_filename", "s3_attach_size", "s3_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:05:53.438171"], ["s3_attach_content_type", "text/plain"], ["s3_attach_filename", "file.txt"], ["s3_attach_size", 11], ["s3_attach_updated_at", "2014-11-17 21:05:53.437688"], ["updated_at", "2014-11-17 21:05:53.438171"]]
63126
+  (0.2ms) RELEASE SAVEPOINT active_record_1
63127
+  (0.1ms) SAVEPOINT active_record_1
63128
+ SQL (0.1ms) UPDATE "media" SET "s3_attach_content_type" = ?, "s3_attach_filename" = ?, "s3_attach_size" = ?, "s3_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["s3_attach_content_type", "image/gif"], ["s3_attach_filename", "180x150.gif"], ["s3_attach_size", 5461], ["s3_attach_updated_at", "2014-11-17 21:05:54.175397"], ["updated_at", "2014-11-17 21:05:54.175667"]]
63129
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63130
+  (0.1ms) SAVEPOINT active_record_1
63131
+ SQL (0.1ms) DELETE FROM "media" WHERE "media"."id" = ? [["id", 1]]
63132
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63133
+  (0.1ms) rollback transaction
63134
+  (0.1ms) begin transaction
63135
+ ----------------------------------
63136
+ ProcessorTest: test_contain_resize
63137
+ ----------------------------------
63138
+  (0.1ms) rollback transaction
63139
+  (0.1ms) begin transaction
63140
+ --------------------------------
63141
+ ProcessorTest: test_cover_resize
63142
+ --------------------------------
63143
+  (0.1ms) rollback transaction
63144
+  (0.1ms) begin transaction
63145
+ --------------------------------
63146
+ ProcessorTest: test_force_resize
63147
+ --------------------------------
63148
+  (0.1ms) rollback transaction
63149
+  (0.1ms) begin transaction
63150
+ -----------------------------------------------------
63151
+ ValidatorsTest: test_content_type_inclusion_validator
63152
+ -----------------------------------------------------
63153
+  (0.1ms) SAVEPOINT active_record_1
63154
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63155
+  (0.0ms) rollback transaction
63156
+  (0.1ms) begin transaction
63157
+ -------------------------------------------------
63158
+ ValidatorsTest: test_content_type_regex_validator
63159
+ -------------------------------------------------
63160
+  (0.1ms) SAVEPOINT active_record_1
63161
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63162
+  (0.0ms) rollback transaction
63163
+  (0.0ms) begin transaction
63164
+ ---------------------------------------
63165
+ ValidatorsTest: test_presence_validator
63166
+ ---------------------------------------
63167
+  (0.1ms) SAVEPOINT active_record_1
63168
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63169
+  (0.0ms) rollback transaction
63170
+  (0.1ms) begin transaction
63171
+ -------------------------------------------
63172
+ ValidatorsTest: test_size_maximum_validator
63173
+ -------------------------------------------
63174
+  (0.1ms) SAVEPOINT active_record_1
63175
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63176
+  (0.0ms) rollback transaction
63177
+  (0.0ms) begin transaction
63178
+ -------------------------------------------
63179
+ ValidatorsTest: test_size_minimum_validator
63180
+ -------------------------------------------
63181
+  (0.1ms) SAVEPOINT active_record_1
63182
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63183
+  (0.2ms) rollback transaction
63184
+  (0.1ms) begin transaction
63185
+ -----------------------------------------
63186
+ ValidatorsTest: test_size_range_validator
63187
+ -----------------------------------------
63188
+  (0.1ms) SAVEPOINT active_record_1
63189
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63190
+  (0.1ms) rollback transaction
63191
+  (0.1ms) begin transaction
63192
+ ------------------------------------
63193
+ MigrationTest: test_column_migration
63194
+ ------------------------------------
63195
+  (0.3ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
63196
+  (0.2ms) ALTER TABLE "pictures" ADD "image_filename" varchar(255)
63197
+  (0.1ms) ALTER TABLE "pictures" ADD "image_content_type" varchar(255)
63198
+  (0.2ms) ALTER TABLE "pictures" ADD "image_size" integer
63199
+  (0.1ms) ALTER TABLE "pictures" ADD "image_updated_at" datetime
63200
+  (0.1ms) SAVEPOINT active_record_1
63201
+  (1.6ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar(255), "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime) 
63202
+  (0.1ms) SELECT * FROM "pictures"
63203
+  (0.1ms) DROP TABLE "pictures"
63204
+  (0.4ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime)
63205
+  (0.1ms) SELECT * FROM "apictures"
63206
+  (0.2ms) DROP TABLE "apictures"
63207
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63208
+  (0.0ms) SAVEPOINT active_record_1
63209
+  (0.2ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime) 
63210
+  (0.1ms) SELECT * FROM "pictures"
63211
+  (0.1ms) DROP TABLE "pictures"
63212
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime)
63213
+  (0.1ms) SELECT * FROM "apictures"
63214
+  (0.1ms) DROP TABLE "apictures"
63215
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63216
+  (0.0ms) SAVEPOINT active_record_1
63217
+  (0.2ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_size" integer, "image_updated_at" datetime) 
63218
+  (0.0ms) SELECT * FROM "pictures"
63219
+  (0.1ms) DROP TABLE "pictures"
63220
+  (0.1ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime)
63221
+  (0.0ms) SELECT * FROM "apictures"
63222
+  (0.1ms) DROP TABLE "apictures"
63223
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63224
+  (0.0ms) SAVEPOINT active_record_1
63225
+  (0.2ms) CREATE TEMPORARY TABLE "apictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_updated_at" datetime) 
63226
+  (0.1ms) SELECT * FROM "pictures"
63227
+  (0.2ms) DROP TABLE "pictures"
63228
+  (0.2ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)
63229
+  (0.1ms) SELECT * FROM "apictures"
63230
+  (0.1ms) DROP TABLE "apictures"
63231
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63232
+  (0.2ms) rollback transaction
63233
+  (0.1ms) begin transaction
63234
+ -----------------------------------
63235
+ MigrationTest: test_table_migration
63236
+ -----------------------------------
63237
+  (0.5ms) CREATE TABLE "pictures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_filename" varchar(255), "image_content_type" varchar(255), "image_size" integer, "image_updated_at" datetime)
63238
+  (0.2ms) DROP TABLE "pictures"
63239
+  (0.1ms) rollback transaction
63240
+  (0.0ms) begin transaction
63241
+ --------------------------------------
63242
+ TasksTest: test_refersh_missing_styles
63243
+ --------------------------------------
63244
+  (0.1ms) SAVEPOINT active_record_1
63245
+ SQL (0.3ms) INSERT INTO "media" ("attach_content_type", "attach_filename", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_content_type", "image/gif"], ["attach_filename", "180x150.gif"], ["attach_size", 5461], ["attach_updated_at", "2014-11-17 21:05:58.356428"], ["created_at", "2014-11-17 21:05:58.357082"], ["updated_at", "2014-11-17 21:05:58.357082"]]
63246
+  (0.2ms) RELEASE SAVEPOINT active_record_1
63247
+ Medium Load (0.3ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
63248
+ Missing styles regenerated successfully.
63249
+  (0.2ms) rollback transaction
63250
+  (0.1ms) begin transaction
63251
+ ----------------------------------
63252
+ TasksTest: test_refresh_all_styles
63253
+ ----------------------------------
63254
+  (0.1ms) SAVEPOINT active_record_1
63255
+ SQL (0.1ms) INSERT INTO "media" ("attach_content_type", "attach_filename", "attach_size", "attach_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attach_content_type", "image/gif"], ["attach_filename", "180x150.gif"], ["attach_size", 5461], ["attach_updated_at", "2014-11-17 21:05:59.837213"], ["created_at", "2014-11-17 21:05:59.837912"], ["updated_at", "2014-11-17 21:05:59.837912"]]
63256
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63257
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
63258
+ All styles regenerated successfully.
63259
+ Medium Load (0.2ms) SELECT "media".* FROM "media" ORDER BY "media"."id" ASC LIMIT 1000
63260
+ All styles regenerated successfully.
63261
+  (0.2ms) rollback transaction
63262
+  (0.1ms) begin transaction
63263
+ ------------------------------------------
63264
+ GeneratorsTest: test_initializer_generator
63265
+ ------------------------------------------
63266
+  (0.1ms) rollback transaction
63267
+  (0.1ms) begin transaction
63268
+ ---------------------------
63269
+ LocalStorageTest: test_crud
63270
+ ---------------------------
63271
+  (0.1ms) SAVEPOINT active_record_1
63272
+ SQL (0.2ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:06:01.708296"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 21:06:01.707734"], ["updated_at", "2014-11-17 21:06:01.708296"]]
63273
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63274
+  (0.1ms) SAVEPOINT active_record_1
63275
+ SQL (0.1ms) UPDATE "media" SET "local_attach_content_type" = ?, "local_attach_filename" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["local_attach_content_type", "image/gif"], ["local_attach_filename", "180x150.gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2014-11-17 21:06:01.712783"], ["updated_at", "2014-11-17 21:06:01.713011"]]
63276
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63277
+  (0.0ms) SAVEPOINT active_record_1
63278
+ SQL (0.1ms) DELETE FROM "media" WHERE "media"."id" = ? [["id", 1]]
63279
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63280
+  (0.1ms) rollback transaction
63281
+  (0.1ms) begin transaction
63282
+ ----------------------------------
63283
+ LocalStorageTest: test_detroy_attr
63284
+ ----------------------------------
63285
+  (0.1ms) SAVEPOINT active_record_1
63286
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:06:01.733588"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 21:06:01.733066"], ["updated_at", "2014-11-17 21:06:01.733588"]]
63287
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63288
+  (0.0ms) SAVEPOINT active_record_1
63289
+ SQL (0.1ms) UPDATE "media" SET "local_attach_content_type" = ?, "local_attach_filename" = ?, "local_attach_size" = ?, "local_attach_updated_at" = ?, "updated_at" = ? WHERE "media"."id" = 1 [["local_attach_content_type", nil], ["local_attach_filename", nil], ["local_attach_size", nil], ["local_attach_updated_at", nil], ["updated_at", "2014-11-17 21:06:01.737654"]]
63290
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63291
+  (0.1ms) rollback transaction
63292
+  (0.1ms) begin transaction
63293
+ -------------------------------
63294
+ LocalStorageTest: test_file_url
63295
+ -------------------------------
63296
+  (0.1ms) SAVEPOINT active_record_1
63297
+ SQL (0.3ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:06:01.740602"], ["local_attach_content_type", "text/plain"], ["local_attach_filename", "file.txt"], ["local_attach_size", 11], ["local_attach_updated_at", "2014-11-17 21:06:01.740242"], ["updated_at", "2014-11-17 21:06:01.740602"]]
63298
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63299
+  (0.1ms) rollback transaction
63300
+  (0.0ms) begin transaction
63301
+ --------------------------------
63302
+ LocalStorageTest: test_image_url
63303
+ --------------------------------
63304
+  (0.1ms) SAVEPOINT active_record_1
63305
+ SQL (0.1ms) INSERT INTO "media" ("created_at", "local_attach_content_type", "local_attach_filename", "local_attach_size", "local_attach_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-11-17 21:06:01.745738"], ["local_attach_content_type", "image/gif"], ["local_attach_filename", "180x150.gif"], ["local_attach_size", 5461], ["local_attach_updated_at", "2014-11-17 21:06:01.745327"], ["updated_at", "2014-11-17 21:06:01.745738"]]
63306
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63307
+  (0.1ms) rollback transaction
63308
+  (0.1ms) begin transaction
63309
+ --------------------------------------
63310
+ AttachmentTest: test_attachment_source
63311
+ --------------------------------------
63312
+  (0.1ms) SAVEPOINT active_record_1
63313
+ 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:02.171119"], ["created_at", "2014-11-17 21:06:02.171622"], ["updated_at", "2014-11-17 21:06:02.171622"]]
63314
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63315
+  (0.0ms) SAVEPOINT active_record_1
63316
+ 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:02.171119"], ["created_at", "2014-11-17 21:06:02.174424"], ["updated_at", "2014-11-17 21:06:02.174424"]]
63317
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63318
+  (0.1ms) rollback transaction
63319
+  (0.0ms) begin transaction
63320
+ -------------------------------
63321
+ AttachmentTest: test_uri_source
63322
+ -------------------------------
63323
+  (0.1ms) SAVEPOINT active_record_1
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
+  (0.4ms) RELEASE SAVEPOINT active_record_1
63326
+  (0.1ms) rollback transaction