attached 0.5.7 → 0.5.8
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 +7 -0
- data/README.rdoc +2 -1
- data/lib/attached/storage/base.rb +25 -26
- data/lib/attached/version.rb +1 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +15 -0
- data/test/dummy/log/test.log +199 -0
- data/test/dummy/public/system/audios/files/full/3a1b4099-b855-4ff9-acac-76516674d1f1.aac +0 -0
- data/test/dummy/public/system/audios/files/full/56734390-9752-4291-9220-1b447b909b57.aac +0 -0
- data/test/dummy/public/system/audios/files/large/3a1b4099-b855-4ff9-acac-76516674d1f1.aac +0 -0
- data/test/dummy/public/system/audios/files/large/56734390-9752-4291-9220-1b447b909b57.aac +0 -0
- data/test/dummy/public/system/audios/files/original/3a1b4099-b855-4ff9-acac-76516674d1f1.wav +0 -0
- data/test/dummy/public/system/audios/files/original/56734390-9752-4291-9220-1b447b909b57.wav +0 -0
- data/test/dummy/public/system/audios/files/small/3a1b4099-b855-4ff9-acac-76516674d1f1.aac +0 -0
- data/test/dummy/public/system/audios/files/small/56734390-9752-4291-9220-1b447b909b57.aac +0 -0
- data/test/dummy/public/system/images/files/full/b97dc186-c2e6-469a-9bb2-e70ea715631f.jpg +0 -0
- data/test/dummy/public/system/images/files/full/d2614a29-3e26-4c93-b986-770a5f4f288a.jpg +0 -0
- data/test/dummy/public/system/images/files/large/b97dc186-c2e6-469a-9bb2-e70ea715631f.jpg +0 -0
- data/test/dummy/public/system/images/files/large/d2614a29-3e26-4c93-b986-770a5f4f288a.jpg +0 -0
- data/test/dummy/public/system/images/files/original/b97dc186-c2e6-469a-9bb2-e70ea715631f.png +0 -0
- data/test/dummy/public/system/images/files/original/d2614a29-3e26-4c93-b986-770a5f4f288a.png +0 -0
- data/test/dummy/public/system/images/files/small/b97dc186-c2e6-469a-9bb2-e70ea715631f.jpg +0 -0
- data/test/dummy/public/system/images/files/small/d2614a29-3e26-4c93-b986-770a5f4f288a.jpg +0 -0
- data/test/dummy/public/system/images/files/thumb/b97dc186-c2e6-469a-9bb2-e70ea715631f.jpg +0 -0
- data/test/dummy/public/system/images/files/thumb/d2614a29-3e26-4c93-b986-770a5f4f288a.jpg +0 -0
- metadata +51 -25
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: d7fad8a050d5bf8b063b0512f83355719d6b03bc
|
4
|
+
data.tar.gz: 849da72a3a3c2d10592764054f7fbd3a877546fd
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 9ecaf14fab6aa297b6d5383bd0990e589f73443ffabd70024a151ca4eb84c9cc9a3a7f475cd17ea2dccc15f11fae279df279802a936f73a941c904f7c0e63c96
|
7
|
+
data.tar.gz: 8412e1fe2e0c74cdc6d8c440972525d7db76053a75e4913dab5258222b1317726913e6b1cb8922c290402bbf9152463f04780ac30d36e25a9b92086ecbbf83d6
|
data/README.rdoc
CHANGED
@@ -8,11 +8,12 @@ The gem is tested with:
|
|
8
8
|
|
9
9
|
* Ruby on Rails 3.1.9
|
10
10
|
* Ruby on Rails 3.2.10
|
11
|
+
* Ruby (MRI) 2.0.0
|
11
12
|
* Ruby (MRI) 1.9.3
|
12
13
|
* Ruby (MRI) 1.9.2
|
13
14
|
* Ruby (MRI) 1.8.7
|
14
15
|
* Ruby (REE) 1.8.7
|
15
|
-
* JRuby 1.7.
|
16
|
+
* JRuby 1.7.2
|
16
17
|
* Rubinius 1.2.4
|
17
18
|
|
18
19
|
== Installation
|
@@ -32,32 +32,31 @@ module Attached
|
|
32
32
|
|
33
33
|
def options(path)
|
34
34
|
options = {}
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
when /
|
39
|
-
when /
|
40
|
-
when /
|
41
|
-
when /
|
42
|
-
when /
|
43
|
-
when /
|
44
|
-
when /
|
45
|
-
when /
|
46
|
-
when /
|
47
|
-
when /
|
48
|
-
when /
|
49
|
-
when /
|
50
|
-
when /
|
51
|
-
when /
|
52
|
-
when /
|
53
|
-
when /
|
54
|
-
when /
|
55
|
-
when /
|
56
|
-
when /
|
57
|
-
when /html/ then
|
58
|
-
when /
|
59
|
-
when /
|
60
|
-
when /csv/ then options[:content_type] = "text/csv"
|
35
|
+
|
36
|
+
options[:content_type] = case File.extname(path)
|
37
|
+
when /tiff/ then "image/tiff"
|
38
|
+
when /tif/ then "image/tiff"
|
39
|
+
when /jpeg/ then "image/jpeg"
|
40
|
+
when /jpe/ then "image/jpeg"
|
41
|
+
when /jpg/ then "image/jpeg"
|
42
|
+
when /png/ then "image/png"
|
43
|
+
when /gif/ then "image/gif"
|
44
|
+
when /bmp/ then "image/bmp"
|
45
|
+
when /mpeg/ then "video/mpeg"
|
46
|
+
when /mpa/ then "video/mpeg"
|
47
|
+
when /mpe/ then "video/mpeg"
|
48
|
+
when /mpg/ then "video/mpeg"
|
49
|
+
when /mov/ then "video/mov"
|
50
|
+
when /josn/ then "application/json"
|
51
|
+
when /xml/ then "application/xml"
|
52
|
+
when /pdf/ then "application/pdf"
|
53
|
+
when /rtf/ then "application/rtf"
|
54
|
+
when /zip/ then "application/zip"
|
55
|
+
when /js/ then "application/js"
|
56
|
+
when /html/ then "text/html"
|
57
|
+
when /html/ then "text/htm"
|
58
|
+
when /txt/ then "text/plain"
|
59
|
+
when /csv/ then "text/csv"
|
61
60
|
end
|
62
61
|
|
63
62
|
return options
|
data/lib/attached/version.rb
CHANGED
data/test/dummy/db/test.sqlite3
CHANGED
Binary file
|
@@ -61,3 +61,18 @@ Migrating to CreateImages (20101223191846)
|
|
61
61
|
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
62
62
|
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101223191846')[0m
|
63
63
|
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101223191836')
|
64
|
+
Connecting to database specified by database.yml
|
65
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
66
|
+
Migrating to CreateAudios (20101223191836)
|
67
|
+
Migrating to CreateImages (20101223191846)
|
68
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
69
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
70
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
71
|
+
[1m[36m (0.3ms)[0m [1mselect sqlite_version(*)[0m
|
72
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "audios" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "file_identifier" varchar(255), "file_extension" varchar(255), "file_size" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
73
|
+
[1m[36m (10.0ms)[0m [1mCREATE TABLE "images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "file_identifier" varchar(255), "file_extension" varchar(255), "file_size" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
74
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
75
|
+
[1m[36m (1.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
76
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
77
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101223191846')[0m
|
78
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101223191836')
|
data/test/dummy/log/test.log
CHANGED
@@ -1233,3 +1233,202 @@ Completed 302 Found in 6ms (ActiveRecord: 0.0ms)
|
|
1233
1233
|
Processing by MainController#index as HTML
|
1234
1234
|
Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
|
1235
1235
|
[1m[35m (0.1ms)[0m rollback transaction
|
1236
|
+
Connecting to database specified by database.yml
|
1237
|
+
Connecting to database specified by database.yml
|
1238
|
+
Connecting to database specified by database.yml
|
1239
|
+
Connecting to database specified by database.yml
|
1240
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
1241
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1242
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1243
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
1244
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1245
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1246
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1247
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1248
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1249
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1250
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1251
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
1252
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1253
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1254
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1255
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1256
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1257
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1258
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1259
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1260
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1261
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1262
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1263
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1264
|
+
[attached] save attached
|
1265
|
+
[1m[36mSQL (8.4ms)[0m [1mINSERT INTO "audios" ("created_at", "file_extension", "file_identifier", "file_size", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 19 May 2013 21:46:18 UTC +00:00], ["file_extension", ".wav"], ["file_identifier", "3a1b4099-b855-4ff9-acac-76516674d1f1"], ["file_size", 1055276], ["name", nil], ["updated_at", Sun, 19 May 2013 21:46:18 UTC +00:00]]
|
1266
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
1267
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
1268
|
+
[1m[35m (0.2ms)[0m begin transaction
|
1269
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "audios"[0m
|
1270
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "audios" ("name", "file_identifier", "file_extension", "file_size", "created_at", "updated_at", "id") VALUES ('Audio', '7f110c2f-5474-dcbf-bd79-b284b489cb7a', '.wav', 399085, '2013-05-19 21:46:18', '2013-05-19 21:46:18', 410859157)
|
1271
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "images"[0m
|
1272
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "images" ("name", "file_identifier", "file_extension", "file_size", "created_at", "updated_at", "id") VALUES ('Image', '7f110c2f-5474-dcbf-bd79-b284b489cb7a', '.png', 399085, '2013-05-19 21:46:18', '2013-05-19 21:46:18', 87884898)
|
1273
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
1274
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1275
|
+
[1m[36mAudio Load (0.3ms)[0m [1mSELECT "audios".* FROM "audios" WHERE "audios"."id" = ? LIMIT 1[0m [["id", 410859157]]
|
1276
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "audios"
|
1277
|
+
Processing by AudiosController#create as HTML
|
1278
|
+
Parameters: {"audio"=>{"name"=>"Audio", "file"=>#<Rack::Test::UploadedFile:0x007fb67a554d20 @content_type="audio/wav", @original_filename="audio.wav", @tempfile=#<Tempfile:/var/folders/cz/w72mmkxj48q1hn3n3xbyr7c80000gn/T/audio.wav20130519-3846-nywdpn>>}}
|
1279
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
1280
|
+
[attached] save attached
|
1281
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "audios" ("created_at", "file_extension", "file_identifier", "file_size", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sun, 19 May 2013 21:46:19 UTC +00:00], ["file_extension", ".wav"], ["file_identifier", "56734390-9752-4291-9220-1b447b909b57"], ["file_size", 1055276], ["name", "Audio"], ["updated_at", Sun, 19 May 2013 21:46:19 UTC +00:00]]
|
1282
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1283
|
+
Redirected to http://test.host/audios/410859158
|
1284
|
+
Completed 302 Found in 720ms (ActiveRecord: 0.0ms)
|
1285
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "audios"
|
1286
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1287
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1288
|
+
[1m[36mAudio Load (0.2ms)[0m [1mSELECT "audios".* FROM "audios" WHERE "audios"."id" = ? LIMIT 1[0m [["id", 410859157]]
|
1289
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "audios"
|
1290
|
+
Processing by AudiosController#destroy as HTML
|
1291
|
+
Parameters: {"id"=>"410859157"}
|
1292
|
+
[1m[36mAudio Load (0.1ms)[0m [1mSELECT "audios".* FROM "audios" WHERE "audios"."id" = ? LIMIT 1[0m [["id", "410859157"]]
|
1293
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1294
|
+
[attached] destroy attached
|
1295
|
+
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "audios" WHERE "audios"."id" = ?[0m [["id", 410859157]]
|
1296
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1297
|
+
Redirected to http://test.host/audios
|
1298
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.0ms)
|
1299
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "audios" [0m
|
1300
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1301
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1302
|
+
[1m[35mAudio Load (0.1ms)[0m SELECT "audios".* FROM "audios" WHERE "audios"."id" = ? LIMIT 1 [["id", 410859157]]
|
1303
|
+
Processing by AudiosController#edit as HTML
|
1304
|
+
Parameters: {"id"=>"410859157"}
|
1305
|
+
[1m[36mAudio Load (0.1ms)[0m [1mSELECT "audios".* FROM "audios" WHERE "audios"."id" = ? LIMIT 1[0m [["id", "410859157"]]
|
1306
|
+
Rendered audios/_form.html.haml (5.9ms)
|
1307
|
+
Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.1ms)
|
1308
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1309
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1310
|
+
[1m[35mAudio Load (0.1ms)[0m SELECT "audios".* FROM "audios" WHERE "audios"."id" = ? LIMIT 1 [["id", 410859157]]
|
1311
|
+
Processing by AudiosController#index as HTML
|
1312
|
+
[1m[36mAudio Load (0.3ms)[0m [1mSELECT "audios".* FROM "audios" [0m
|
1313
|
+
Completed 200 OK in 11ms (Views: 9.3ms | ActiveRecord: 0.3ms)
|
1314
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1315
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1316
|
+
[1m[35mAudio Load (0.1ms)[0m SELECT "audios".* FROM "audios" WHERE "audios"."id" = ? LIMIT 1 [["id", 410859157]]
|
1317
|
+
Processing by AudiosController#new as HTML
|
1318
|
+
Rendered audios/_form.html.haml (2.5ms)
|
1319
|
+
Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
|
1320
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1321
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1322
|
+
[1m[36mAudio Load (0.2ms)[0m [1mSELECT "audios".* FROM "audios" WHERE "audios"."id" = ? LIMIT 1[0m [["id", 410859157]]
|
1323
|
+
Processing by AudiosController#show as HTML
|
1324
|
+
Parameters: {"id"=>"410859157"}
|
1325
|
+
[1m[35mAudio Load (0.1ms)[0m SELECT "audios".* FROM "audios" WHERE "audios"."id" = ? LIMIT 1 [["id", "410859157"]]
|
1326
|
+
Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.1ms)
|
1327
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1328
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1329
|
+
[1m[36mAudio Load (0.1ms)[0m [1mSELECT "audios".* FROM "audios" WHERE "audios"."id" = ? LIMIT 1[0m [["id", 410859157]]
|
1330
|
+
Processing by AudiosController#update as HTML
|
1331
|
+
Parameters: {"audio"=>{"id"=>"410859157", "name"=>"Audio", "file_identifier"=>"7f110c2f-5474-dcbf-bd79-b284b489cb7a", "file_extension"=>".wav", "file_size"=>"399085", "created_at"=>"2013-05-19 21:46:18 UTC", "updated_at"=>"2013-05-19 21:46:18 UTC"}, "id"=>"410859157"}
|
1332
|
+
[1m[35mAudio Load (0.1ms)[0m SELECT "audios".* FROM "audios" WHERE "audios"."id" = ? LIMIT 1 [["id", "410859157"]]
|
1333
|
+
WARNING: Can't mass-assign protected attributes: id
|
1334
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1335
|
+
[attached] save attached
|
1336
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1337
|
+
Redirected to http://test.host/audios/410859157
|
1338
|
+
Completed 302 Found in 9ms (ActiveRecord: 0.0ms)
|
1339
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1340
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1341
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
1342
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1343
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1344
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1345
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1346
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1347
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1348
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1349
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1350
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1351
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1352
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1353
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
1354
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1355
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1356
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1357
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
1358
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1359
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1360
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1361
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
1362
|
+
[attached] save attached
|
1363
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "images" ("created_at", "file_extension", "file_identifier", "file_size", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sun, 19 May 2013 21:46:20 UTC +00:00], ["file_extension", ".png"], ["file_identifier", "b97dc186-c2e6-469a-9bb2-e70ea715631f"], ["file_size", 399085], ["name", nil], ["updated_at", Sun, 19 May 2013 21:46:20 UTC +00:00]]
|
1364
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1365
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1366
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1367
|
+
[1m[35mImage Load (0.3ms)[0m SELECT "images".* FROM "images" WHERE "images"."id" = ? LIMIT 1 [["id", 87884898]]
|
1368
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "images" [0m
|
1369
|
+
Processing by ImagesController#create as HTML
|
1370
|
+
Parameters: {"image"=>{"name"=>"Image", "file"=>#<Rack::Test::UploadedFile:0x007fb67a25cb90 @content_type="image/png", @original_filename="image.png", @tempfile=#<Tempfile:/var/folders/cz/w72mmkxj48q1hn3n3xbyr7c80000gn/T/image.png20130519-3846-18mx688>>}}
|
1371
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
1372
|
+
[attached] save attached
|
1373
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "images" ("created_at", "file_extension", "file_identifier", "file_size", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 19 May 2013 21:46:20 UTC +00:00], ["file_extension", ".png"], ["file_identifier", "d2614a29-3e26-4c93-b986-770a5f4f288a"], ["file_size", 399085], ["name", "Image"], ["updated_at", Sun, 19 May 2013 21:46:20 UTC +00:00]]
|
1374
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1375
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1376
|
+
[attached] save attached
|
1377
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1378
|
+
Redirected to http://test.host/images/87884899
|
1379
|
+
Completed 302 Found in 247ms (ActiveRecord: 0.0ms)
|
1380
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "images" [0m
|
1381
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1382
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1383
|
+
[1m[35mImage Load (0.2ms)[0m SELECT "images".* FROM "images" WHERE "images"."id" = ? LIMIT 1 [["id", 87884898]]
|
1384
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "images" [0m
|
1385
|
+
Processing by ImagesController#destroy as HTML
|
1386
|
+
Parameters: {"id"=>"87884898"}
|
1387
|
+
[1m[35mImage Load (0.1ms)[0m SELECT "images".* FROM "images" WHERE "images"."id" = ? LIMIT 1 [["id", "87884898"]]
|
1388
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1389
|
+
[attached] destroy attached
|
1390
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "images" WHERE "images"."id" = ? [["id", 87884898]]
|
1391
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1392
|
+
Redirected to http://test.host/images
|
1393
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.0ms)
|
1394
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "images"
|
1395
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1396
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1397
|
+
[1m[36mImage Load (0.1ms)[0m [1mSELECT "images".* FROM "images" WHERE "images"."id" = ? LIMIT 1[0m [["id", 87884898]]
|
1398
|
+
Processing by ImagesController#edit as HTML
|
1399
|
+
Parameters: {"id"=>"87884898"}
|
1400
|
+
[1m[35mImage Load (0.1ms)[0m SELECT "images".* FROM "images" WHERE "images"."id" = ? LIMIT 1 [["id", "87884898"]]
|
1401
|
+
Rendered images/_form.html.haml (5.9ms)
|
1402
|
+
Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.1ms)
|
1403
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1404
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1405
|
+
[1m[36mImage Load (0.1ms)[0m [1mSELECT "images".* FROM "images" WHERE "images"."id" = ? LIMIT 1[0m [["id", 87884898]]
|
1406
|
+
Processing by ImagesController#index as HTML
|
1407
|
+
[1m[35mImage Load (0.2ms)[0m SELECT "images".* FROM "images"
|
1408
|
+
Completed 200 OK in 11ms (Views: 9.3ms | ActiveRecord: 0.2ms)
|
1409
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1410
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1411
|
+
[1m[36mImage Load (0.2ms)[0m [1mSELECT "images".* FROM "images" WHERE "images"."id" = ? LIMIT 1[0m [["id", 87884898]]
|
1412
|
+
Processing by ImagesController#new as HTML
|
1413
|
+
Rendered images/_form.html.haml (3.4ms)
|
1414
|
+
Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms)
|
1415
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1416
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1417
|
+
[1m[35mImage Load (0.2ms)[0m SELECT "images".* FROM "images" WHERE "images"."id" = ? LIMIT 1 [["id", 87884898]]
|
1418
|
+
Processing by ImagesController#show as HTML
|
1419
|
+
Parameters: {"id"=>"87884898"}
|
1420
|
+
[1m[36mImage Load (0.1ms)[0m [1mSELECT "images".* FROM "images" WHERE "images"."id" = ? LIMIT 1[0m [["id", "87884898"]]
|
1421
|
+
Completed 200 OK in 9ms (Views: 6.8ms | ActiveRecord: 0.1ms)
|
1422
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1423
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1424
|
+
[1m[35mImage Load (0.2ms)[0m SELECT "images".* FROM "images" WHERE "images"."id" = ? LIMIT 1 [["id", 87884898]]
|
1425
|
+
Processing by ImagesController#update as HTML
|
1426
|
+
Parameters: {"image"=>{"id"=>"87884898", "name"=>"Image", "file_identifier"=>"7f110c2f-5474-dcbf-bd79-b284b489cb7a", "file_extension"=>".png", "file_size"=>"399085", "created_at"=>"2013-05-19 21:46:18 UTC", "updated_at"=>"2013-05-19 21:46:18 UTC"}, "id"=>"87884898"}
|
1427
|
+
[1m[36mImage Load (0.1ms)[0m [1mSELECT "images".* FROM "images" WHERE "images"."id" = ? LIMIT 1[0m [["id", "87884898"]]
|
1428
|
+
Redirected to http://test.host/images/87884898
|
1429
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.0ms)
|
1430
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1431
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1432
|
+
Processing by MainController#index as HTML
|
1433
|
+
Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.0ms)
|
1434
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,78 +1,69 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: attached
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
5
|
-
prerelease:
|
4
|
+
version: 0.5.8
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Kevin Sylvestre
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2013-
|
11
|
+
date: 2013-05-19 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: fog
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - '>='
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: '0'
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
|
-
- -
|
24
|
+
- - '>='
|
28
25
|
- !ruby/object:Gem::Version
|
29
26
|
version: '0'
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: identifier
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
30
|
requirements:
|
35
|
-
- -
|
31
|
+
- - '>='
|
36
32
|
- !ruby/object:Gem::Version
|
37
33
|
version: '0'
|
38
34
|
type: :runtime
|
39
35
|
prerelease: false
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
37
|
requirements:
|
43
|
-
- -
|
38
|
+
- - '>='
|
44
39
|
- !ruby/object:Gem::Version
|
45
40
|
version: '0'
|
46
41
|
- !ruby/object:Gem::Dependency
|
47
42
|
name: rails
|
48
43
|
requirement: !ruby/object:Gem::Requirement
|
49
|
-
none: false
|
50
44
|
requirements:
|
51
|
-
- -
|
45
|
+
- - '>'
|
52
46
|
- !ruby/object:Gem::Version
|
53
47
|
version: 3.0.0
|
54
48
|
type: :runtime
|
55
49
|
prerelease: false
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
none: false
|
58
51
|
requirements:
|
59
|
-
- -
|
52
|
+
- - '>'
|
60
53
|
- !ruby/object:Gem::Version
|
61
54
|
version: 3.0.0
|
62
55
|
- !ruby/object:Gem::Dependency
|
63
56
|
name: appraisal
|
64
57
|
requirement: !ruby/object:Gem::Requirement
|
65
|
-
none: false
|
66
58
|
requirements:
|
67
|
-
- -
|
59
|
+
- - '>='
|
68
60
|
- !ruby/object:Gem::Version
|
69
61
|
version: '0'
|
70
62
|
type: :development
|
71
63
|
prerelease: false
|
72
64
|
version_requirements: !ruby/object:Gem::Requirement
|
73
|
-
none: false
|
74
65
|
requirements:
|
75
|
-
- -
|
66
|
+
- - '>='
|
76
67
|
- !ruby/object:Gem::Version
|
77
68
|
version: '0'
|
78
69
|
description: Attached is a Ruby on Rails cloud attachment and processor library inspired
|
@@ -163,7 +154,9 @@ files:
|
|
163
154
|
- test/dummy/public/system/audios/files/full/0fc15fdd-b724-412e-ab8b-7d782ea617e5.aac
|
164
155
|
- test/dummy/public/system/audios/files/full/145812bc-ebc6-473b-8fd5-5eeb09ecd472.aac
|
165
156
|
- test/dummy/public/system/audios/files/full/1f2913b0-3691-4287-93ed-d4d94b59fc2d.aac
|
157
|
+
- test/dummy/public/system/audios/files/full/3a1b4099-b855-4ff9-acac-76516674d1f1.aac
|
166
158
|
- test/dummy/public/system/audios/files/full/4eb32841-d92a-4f18-bee7-9ae824e607da.aac
|
159
|
+
- test/dummy/public/system/audios/files/full/56734390-9752-4291-9220-1b447b909b57.aac
|
167
160
|
- test/dummy/public/system/audios/files/full/749c8645-6940-44d6-aa21-ee5f1fc27ba3.aac
|
168
161
|
- test/dummy/public/system/audios/files/full/9132339e-842c-4f09-84f7-f7bc144dcc79.aac
|
169
162
|
- test/dummy/public/system/audios/files/full/967dd748-2281-42ff-9036-8a138783cc92.aac
|
@@ -173,7 +166,9 @@ files:
|
|
173
166
|
- test/dummy/public/system/audios/files/large/0fc15fdd-b724-412e-ab8b-7d782ea617e5.aac
|
174
167
|
- test/dummy/public/system/audios/files/large/145812bc-ebc6-473b-8fd5-5eeb09ecd472.aac
|
175
168
|
- test/dummy/public/system/audios/files/large/1f2913b0-3691-4287-93ed-d4d94b59fc2d.aac
|
169
|
+
- test/dummy/public/system/audios/files/large/3a1b4099-b855-4ff9-acac-76516674d1f1.aac
|
176
170
|
- test/dummy/public/system/audios/files/large/4eb32841-d92a-4f18-bee7-9ae824e607da.aac
|
171
|
+
- test/dummy/public/system/audios/files/large/56734390-9752-4291-9220-1b447b909b57.aac
|
177
172
|
- test/dummy/public/system/audios/files/large/749c8645-6940-44d6-aa21-ee5f1fc27ba3.aac
|
178
173
|
- test/dummy/public/system/audios/files/large/9132339e-842c-4f09-84f7-f7bc144dcc79.aac
|
179
174
|
- test/dummy/public/system/audios/files/large/967dd748-2281-42ff-9036-8a138783cc92.aac
|
@@ -183,7 +178,9 @@ files:
|
|
183
178
|
- test/dummy/public/system/audios/files/original/0fc15fdd-b724-412e-ab8b-7d782ea617e5.wav
|
184
179
|
- test/dummy/public/system/audios/files/original/145812bc-ebc6-473b-8fd5-5eeb09ecd472.wav
|
185
180
|
- test/dummy/public/system/audios/files/original/1f2913b0-3691-4287-93ed-d4d94b59fc2d.wav
|
181
|
+
- test/dummy/public/system/audios/files/original/3a1b4099-b855-4ff9-acac-76516674d1f1.wav
|
186
182
|
- test/dummy/public/system/audios/files/original/4eb32841-d92a-4f18-bee7-9ae824e607da.wav
|
183
|
+
- test/dummy/public/system/audios/files/original/56734390-9752-4291-9220-1b447b909b57.wav
|
187
184
|
- test/dummy/public/system/audios/files/original/749c8645-6940-44d6-aa21-ee5f1fc27ba3.wav
|
188
185
|
- test/dummy/public/system/audios/files/original/9132339e-842c-4f09-84f7-f7bc144dcc79.wav
|
189
186
|
- test/dummy/public/system/audios/files/original/967dd748-2281-42ff-9036-8a138783cc92.wav
|
@@ -193,7 +190,9 @@ files:
|
|
193
190
|
- test/dummy/public/system/audios/files/small/0fc15fdd-b724-412e-ab8b-7d782ea617e5.aac
|
194
191
|
- test/dummy/public/system/audios/files/small/145812bc-ebc6-473b-8fd5-5eeb09ecd472.aac
|
195
192
|
- test/dummy/public/system/audios/files/small/1f2913b0-3691-4287-93ed-d4d94b59fc2d.aac
|
193
|
+
- test/dummy/public/system/audios/files/small/3a1b4099-b855-4ff9-acac-76516674d1f1.aac
|
196
194
|
- test/dummy/public/system/audios/files/small/4eb32841-d92a-4f18-bee7-9ae824e607da.aac
|
195
|
+
- test/dummy/public/system/audios/files/small/56734390-9752-4291-9220-1b447b909b57.aac
|
197
196
|
- test/dummy/public/system/audios/files/small/749c8645-6940-44d6-aa21-ee5f1fc27ba3.aac
|
198
197
|
- test/dummy/public/system/audios/files/small/9132339e-842c-4f09-84f7-f7bc144dcc79.aac
|
199
198
|
- test/dummy/public/system/audios/files/small/967dd748-2281-42ff-9036-8a138783cc92.aac
|
@@ -210,6 +209,8 @@ files:
|
|
210
209
|
- test/dummy/public/system/images/files/full/966c7ca9-8e1d-4783-aebf-aeedc2956700.jpg
|
211
210
|
- test/dummy/public/system/images/files/full/af2b2586-b144-4d62-9bd2-a38cd9eab3dc.jpg
|
212
211
|
- test/dummy/public/system/images/files/full/b13978ba-3c3f-41dc-9e0f-684b70fada8c.jpg
|
212
|
+
- test/dummy/public/system/images/files/full/b97dc186-c2e6-469a-9bb2-e70ea715631f.jpg
|
213
|
+
- test/dummy/public/system/images/files/full/d2614a29-3e26-4c93-b986-770a5f4f288a.jpg
|
213
214
|
- test/dummy/public/system/images/files/full/e047c5f7-5dd3-4479-b50a-0e210a5aea9d.jpg
|
214
215
|
- test/dummy/public/system/images/files/full/f8db5cf9-bfc2-44dd-86db-703847a36753.jpg
|
215
216
|
- test/dummy/public/system/images/files/large/030f7d0e-1c89-43e7-b9b3-c00bc0304a42.jpg
|
@@ -224,6 +225,8 @@ files:
|
|
224
225
|
- test/dummy/public/system/images/files/large/966c7ca9-8e1d-4783-aebf-aeedc2956700.jpg
|
225
226
|
- test/dummy/public/system/images/files/large/af2b2586-b144-4d62-9bd2-a38cd9eab3dc.jpg
|
226
227
|
- test/dummy/public/system/images/files/large/b13978ba-3c3f-41dc-9e0f-684b70fada8c.jpg
|
228
|
+
- test/dummy/public/system/images/files/large/b97dc186-c2e6-469a-9bb2-e70ea715631f.jpg
|
229
|
+
- test/dummy/public/system/images/files/large/d2614a29-3e26-4c93-b986-770a5f4f288a.jpg
|
227
230
|
- test/dummy/public/system/images/files/large/e047c5f7-5dd3-4479-b50a-0e210a5aea9d.jpg
|
228
231
|
- test/dummy/public/system/images/files/large/f8db5cf9-bfc2-44dd-86db-703847a36753.jpg
|
229
232
|
- test/dummy/public/system/images/files/original/030f7d0e-1c89-43e7-b9b3-c00bc0304a42.png
|
@@ -238,6 +241,8 @@ files:
|
|
238
241
|
- test/dummy/public/system/images/files/original/966c7ca9-8e1d-4783-aebf-aeedc2956700.png
|
239
242
|
- test/dummy/public/system/images/files/original/af2b2586-b144-4d62-9bd2-a38cd9eab3dc.png
|
240
243
|
- test/dummy/public/system/images/files/original/b13978ba-3c3f-41dc-9e0f-684b70fada8c.png
|
244
|
+
- test/dummy/public/system/images/files/original/b97dc186-c2e6-469a-9bb2-e70ea715631f.png
|
245
|
+
- test/dummy/public/system/images/files/original/d2614a29-3e26-4c93-b986-770a5f4f288a.png
|
241
246
|
- test/dummy/public/system/images/files/original/e047c5f7-5dd3-4479-b50a-0e210a5aea9d.png
|
242
247
|
- test/dummy/public/system/images/files/original/f8db5cf9-bfc2-44dd-86db-703847a36753.png
|
243
248
|
- test/dummy/public/system/images/files/small/030f7d0e-1c89-43e7-b9b3-c00bc0304a42.jpg
|
@@ -252,6 +257,8 @@ files:
|
|
252
257
|
- test/dummy/public/system/images/files/small/966c7ca9-8e1d-4783-aebf-aeedc2956700.jpg
|
253
258
|
- test/dummy/public/system/images/files/small/af2b2586-b144-4d62-9bd2-a38cd9eab3dc.jpg
|
254
259
|
- test/dummy/public/system/images/files/small/b13978ba-3c3f-41dc-9e0f-684b70fada8c.jpg
|
260
|
+
- test/dummy/public/system/images/files/small/b97dc186-c2e6-469a-9bb2-e70ea715631f.jpg
|
261
|
+
- test/dummy/public/system/images/files/small/d2614a29-3e26-4c93-b986-770a5f4f288a.jpg
|
255
262
|
- test/dummy/public/system/images/files/small/e047c5f7-5dd3-4479-b50a-0e210a5aea9d.jpg
|
256
263
|
- test/dummy/public/system/images/files/small/f8db5cf9-bfc2-44dd-86db-703847a36753.jpg
|
257
264
|
- test/dummy/public/system/images/files/thumb/030f7d0e-1c89-43e7-b9b3-c00bc0304a42.jpg
|
@@ -266,6 +273,8 @@ files:
|
|
266
273
|
- test/dummy/public/system/images/files/thumb/966c7ca9-8e1d-4783-aebf-aeedc2956700.jpg
|
267
274
|
- test/dummy/public/system/images/files/thumb/af2b2586-b144-4d62-9bd2-a38cd9eab3dc.jpg
|
268
275
|
- test/dummy/public/system/images/files/thumb/b13978ba-3c3f-41dc-9e0f-684b70fada8c.jpg
|
276
|
+
- test/dummy/public/system/images/files/thumb/b97dc186-c2e6-469a-9bb2-e70ea715631f.jpg
|
277
|
+
- test/dummy/public/system/images/files/thumb/d2614a29-3e26-4c93-b986-770a5f4f288a.jpg
|
269
278
|
- test/dummy/public/system/images/files/thumb/e047c5f7-5dd3-4479-b50a-0e210a5aea9d.jpg
|
270
279
|
- test/dummy/public/system/images/files/thumb/f8db5cf9-bfc2-44dd-86db-703847a36753.jpg
|
271
280
|
- test/dummy/Rakefile
|
@@ -293,27 +302,26 @@ files:
|
|
293
302
|
- test/test_helper.rb
|
294
303
|
homepage: http://github.com/ksylvest/attached
|
295
304
|
licenses: []
|
305
|
+
metadata: {}
|
296
306
|
post_install_message:
|
297
307
|
rdoc_options: []
|
298
308
|
require_paths:
|
299
309
|
- lib
|
300
310
|
required_ruby_version: !ruby/object:Gem::Requirement
|
301
|
-
none: false
|
302
311
|
requirements:
|
303
|
-
- -
|
312
|
+
- - '>='
|
304
313
|
- !ruby/object:Gem::Version
|
305
314
|
version: '0'
|
306
315
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
307
|
-
none: false
|
308
316
|
requirements:
|
309
|
-
- -
|
317
|
+
- - '>='
|
310
318
|
- !ruby/object:Gem::Version
|
311
319
|
version: '0'
|
312
320
|
requirements: []
|
313
321
|
rubyforge_project:
|
314
|
-
rubygems_version:
|
322
|
+
rubygems_version: 2.0.2
|
315
323
|
signing_key:
|
316
|
-
specification_version:
|
324
|
+
specification_version: 4
|
317
325
|
summary: An attachment library designed with cloud processors in mind.
|
318
326
|
test_files:
|
319
327
|
- test/attached_test.rb
|
@@ -374,7 +382,9 @@ test_files:
|
|
374
382
|
- test/dummy/public/system/audios/files/full/0fc15fdd-b724-412e-ab8b-7d782ea617e5.aac
|
375
383
|
- test/dummy/public/system/audios/files/full/145812bc-ebc6-473b-8fd5-5eeb09ecd472.aac
|
376
384
|
- test/dummy/public/system/audios/files/full/1f2913b0-3691-4287-93ed-d4d94b59fc2d.aac
|
385
|
+
- test/dummy/public/system/audios/files/full/3a1b4099-b855-4ff9-acac-76516674d1f1.aac
|
377
386
|
- test/dummy/public/system/audios/files/full/4eb32841-d92a-4f18-bee7-9ae824e607da.aac
|
387
|
+
- test/dummy/public/system/audios/files/full/56734390-9752-4291-9220-1b447b909b57.aac
|
378
388
|
- test/dummy/public/system/audios/files/full/749c8645-6940-44d6-aa21-ee5f1fc27ba3.aac
|
379
389
|
- test/dummy/public/system/audios/files/full/9132339e-842c-4f09-84f7-f7bc144dcc79.aac
|
380
390
|
- test/dummy/public/system/audios/files/full/967dd748-2281-42ff-9036-8a138783cc92.aac
|
@@ -384,7 +394,9 @@ test_files:
|
|
384
394
|
- test/dummy/public/system/audios/files/large/0fc15fdd-b724-412e-ab8b-7d782ea617e5.aac
|
385
395
|
- test/dummy/public/system/audios/files/large/145812bc-ebc6-473b-8fd5-5eeb09ecd472.aac
|
386
396
|
- test/dummy/public/system/audios/files/large/1f2913b0-3691-4287-93ed-d4d94b59fc2d.aac
|
397
|
+
- test/dummy/public/system/audios/files/large/3a1b4099-b855-4ff9-acac-76516674d1f1.aac
|
387
398
|
- test/dummy/public/system/audios/files/large/4eb32841-d92a-4f18-bee7-9ae824e607da.aac
|
399
|
+
- test/dummy/public/system/audios/files/large/56734390-9752-4291-9220-1b447b909b57.aac
|
388
400
|
- test/dummy/public/system/audios/files/large/749c8645-6940-44d6-aa21-ee5f1fc27ba3.aac
|
389
401
|
- test/dummy/public/system/audios/files/large/9132339e-842c-4f09-84f7-f7bc144dcc79.aac
|
390
402
|
- test/dummy/public/system/audios/files/large/967dd748-2281-42ff-9036-8a138783cc92.aac
|
@@ -394,7 +406,9 @@ test_files:
|
|
394
406
|
- test/dummy/public/system/audios/files/original/0fc15fdd-b724-412e-ab8b-7d782ea617e5.wav
|
395
407
|
- test/dummy/public/system/audios/files/original/145812bc-ebc6-473b-8fd5-5eeb09ecd472.wav
|
396
408
|
- test/dummy/public/system/audios/files/original/1f2913b0-3691-4287-93ed-d4d94b59fc2d.wav
|
409
|
+
- test/dummy/public/system/audios/files/original/3a1b4099-b855-4ff9-acac-76516674d1f1.wav
|
397
410
|
- test/dummy/public/system/audios/files/original/4eb32841-d92a-4f18-bee7-9ae824e607da.wav
|
411
|
+
- test/dummy/public/system/audios/files/original/56734390-9752-4291-9220-1b447b909b57.wav
|
398
412
|
- test/dummy/public/system/audios/files/original/749c8645-6940-44d6-aa21-ee5f1fc27ba3.wav
|
399
413
|
- test/dummy/public/system/audios/files/original/9132339e-842c-4f09-84f7-f7bc144dcc79.wav
|
400
414
|
- test/dummy/public/system/audios/files/original/967dd748-2281-42ff-9036-8a138783cc92.wav
|
@@ -404,7 +418,9 @@ test_files:
|
|
404
418
|
- test/dummy/public/system/audios/files/small/0fc15fdd-b724-412e-ab8b-7d782ea617e5.aac
|
405
419
|
- test/dummy/public/system/audios/files/small/145812bc-ebc6-473b-8fd5-5eeb09ecd472.aac
|
406
420
|
- test/dummy/public/system/audios/files/small/1f2913b0-3691-4287-93ed-d4d94b59fc2d.aac
|
421
|
+
- test/dummy/public/system/audios/files/small/3a1b4099-b855-4ff9-acac-76516674d1f1.aac
|
407
422
|
- test/dummy/public/system/audios/files/small/4eb32841-d92a-4f18-bee7-9ae824e607da.aac
|
423
|
+
- test/dummy/public/system/audios/files/small/56734390-9752-4291-9220-1b447b909b57.aac
|
408
424
|
- test/dummy/public/system/audios/files/small/749c8645-6940-44d6-aa21-ee5f1fc27ba3.aac
|
409
425
|
- test/dummy/public/system/audios/files/small/9132339e-842c-4f09-84f7-f7bc144dcc79.aac
|
410
426
|
- test/dummy/public/system/audios/files/small/967dd748-2281-42ff-9036-8a138783cc92.aac
|
@@ -421,6 +437,8 @@ test_files:
|
|
421
437
|
- test/dummy/public/system/images/files/full/966c7ca9-8e1d-4783-aebf-aeedc2956700.jpg
|
422
438
|
- test/dummy/public/system/images/files/full/af2b2586-b144-4d62-9bd2-a38cd9eab3dc.jpg
|
423
439
|
- test/dummy/public/system/images/files/full/b13978ba-3c3f-41dc-9e0f-684b70fada8c.jpg
|
440
|
+
- test/dummy/public/system/images/files/full/b97dc186-c2e6-469a-9bb2-e70ea715631f.jpg
|
441
|
+
- test/dummy/public/system/images/files/full/d2614a29-3e26-4c93-b986-770a5f4f288a.jpg
|
424
442
|
- test/dummy/public/system/images/files/full/e047c5f7-5dd3-4479-b50a-0e210a5aea9d.jpg
|
425
443
|
- test/dummy/public/system/images/files/full/f8db5cf9-bfc2-44dd-86db-703847a36753.jpg
|
426
444
|
- test/dummy/public/system/images/files/large/030f7d0e-1c89-43e7-b9b3-c00bc0304a42.jpg
|
@@ -435,6 +453,8 @@ test_files:
|
|
435
453
|
- test/dummy/public/system/images/files/large/966c7ca9-8e1d-4783-aebf-aeedc2956700.jpg
|
436
454
|
- test/dummy/public/system/images/files/large/af2b2586-b144-4d62-9bd2-a38cd9eab3dc.jpg
|
437
455
|
- test/dummy/public/system/images/files/large/b13978ba-3c3f-41dc-9e0f-684b70fada8c.jpg
|
456
|
+
- test/dummy/public/system/images/files/large/b97dc186-c2e6-469a-9bb2-e70ea715631f.jpg
|
457
|
+
- test/dummy/public/system/images/files/large/d2614a29-3e26-4c93-b986-770a5f4f288a.jpg
|
438
458
|
- test/dummy/public/system/images/files/large/e047c5f7-5dd3-4479-b50a-0e210a5aea9d.jpg
|
439
459
|
- test/dummy/public/system/images/files/large/f8db5cf9-bfc2-44dd-86db-703847a36753.jpg
|
440
460
|
- test/dummy/public/system/images/files/original/030f7d0e-1c89-43e7-b9b3-c00bc0304a42.png
|
@@ -449,6 +469,8 @@ test_files:
|
|
449
469
|
- test/dummy/public/system/images/files/original/966c7ca9-8e1d-4783-aebf-aeedc2956700.png
|
450
470
|
- test/dummy/public/system/images/files/original/af2b2586-b144-4d62-9bd2-a38cd9eab3dc.png
|
451
471
|
- test/dummy/public/system/images/files/original/b13978ba-3c3f-41dc-9e0f-684b70fada8c.png
|
472
|
+
- test/dummy/public/system/images/files/original/b97dc186-c2e6-469a-9bb2-e70ea715631f.png
|
473
|
+
- test/dummy/public/system/images/files/original/d2614a29-3e26-4c93-b986-770a5f4f288a.png
|
452
474
|
- test/dummy/public/system/images/files/original/e047c5f7-5dd3-4479-b50a-0e210a5aea9d.png
|
453
475
|
- test/dummy/public/system/images/files/original/f8db5cf9-bfc2-44dd-86db-703847a36753.png
|
454
476
|
- test/dummy/public/system/images/files/small/030f7d0e-1c89-43e7-b9b3-c00bc0304a42.jpg
|
@@ -463,6 +485,8 @@ test_files:
|
|
463
485
|
- test/dummy/public/system/images/files/small/966c7ca9-8e1d-4783-aebf-aeedc2956700.jpg
|
464
486
|
- test/dummy/public/system/images/files/small/af2b2586-b144-4d62-9bd2-a38cd9eab3dc.jpg
|
465
487
|
- test/dummy/public/system/images/files/small/b13978ba-3c3f-41dc-9e0f-684b70fada8c.jpg
|
488
|
+
- test/dummy/public/system/images/files/small/b97dc186-c2e6-469a-9bb2-e70ea715631f.jpg
|
489
|
+
- test/dummy/public/system/images/files/small/d2614a29-3e26-4c93-b986-770a5f4f288a.jpg
|
466
490
|
- test/dummy/public/system/images/files/small/e047c5f7-5dd3-4479-b50a-0e210a5aea9d.jpg
|
467
491
|
- test/dummy/public/system/images/files/small/f8db5cf9-bfc2-44dd-86db-703847a36753.jpg
|
468
492
|
- test/dummy/public/system/images/files/thumb/030f7d0e-1c89-43e7-b9b3-c00bc0304a42.jpg
|
@@ -477,6 +501,8 @@ test_files:
|
|
477
501
|
- test/dummy/public/system/images/files/thumb/966c7ca9-8e1d-4783-aebf-aeedc2956700.jpg
|
478
502
|
- test/dummy/public/system/images/files/thumb/af2b2586-b144-4d62-9bd2-a38cd9eab3dc.jpg
|
479
503
|
- test/dummy/public/system/images/files/thumb/b13978ba-3c3f-41dc-9e0f-684b70fada8c.jpg
|
504
|
+
- test/dummy/public/system/images/files/thumb/b97dc186-c2e6-469a-9bb2-e70ea715631f.jpg
|
505
|
+
- test/dummy/public/system/images/files/thumb/d2614a29-3e26-4c93-b986-770a5f4f288a.jpg
|
480
506
|
- test/dummy/public/system/images/files/thumb/e047c5f7-5dd3-4479-b50a-0e210a5aea9d.jpg
|
481
507
|
- test/dummy/public/system/images/files/thumb/f8db5cf9-bfc2-44dd-86db-703847a36753.jpg
|
482
508
|
- test/dummy/Rakefile
|