Skip to content
This repository has been archived by the owner on Mar 5, 2022. It is now read-only.

Commit

Permalink
Updating the Gaufrette vendor submodule reference
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Krämer committed May 29, 2012
1 parent dacc778 commit 454883b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Vendor/Gaufrette
Submodule Gaufrette updated 63 files
+3 −0 .gitignore
+2 −2 README.markdown
+4 −1 bin/install_vendors.sh
+28 −11 composer.json
+18 −0 phpunit.xml.dist
+13 −8 src/Gaufrette/Adapter.php
+0 −8 src/Gaufrette/Adapter/AclAwareAmazonS3.php
+125 −125 src/Gaufrette/Adapter/AmazonS3.php
+36 −19 src/Gaufrette/Adapter/Apc.php
+8 −0 src/Gaufrette/Adapter/Base.php
+0 −8 src/Gaufrette/Adapter/Cache.php
+202 −0 src/Gaufrette/Adapter/DoctrineDbal.php
+156 −0 src/Gaufrette/Adapter/Dropbox.php
+59 −31 src/Gaufrette/Adapter/Ftp.php
+52 −134 src/Gaufrette/Adapter/GridFS.php
+28 −12 src/Gaufrette/Adapter/InMemory.php
+32 −15 src/Gaufrette/Adapter/Local.php
+108 −37 src/Gaufrette/Adapter/MogileFS.php
+1 −50 src/Gaufrette/Adapter/RackspaceCloudfiles.php
+0 −2 src/Gaufrette/Adapter/SafeLocal.php
+40 −12 src/Gaufrette/Adapter/Sftp.php
+269 −0 src/Gaufrette/Adapter/Zip.php
+2 −2 src/Gaufrette/Exception.php
+31 −0 src/Gaufrette/Exception/FileNotFound.php
+31 −0 src/Gaufrette/Exception/UnexpectedFile.php
+2 −26 src/Gaufrette/File.php
+0 −33 src/Gaufrette/FileCursor/GridFS.php
+0 −85 src/Gaufrette/FileCursor/IteratorWrapper.php
+4 −3 src/Gaufrette/FileStream/InMemoryBuffer.php
+1 −14 src/Gaufrette/Filesystem.php
+1 −15 src/Gaufrette/Util/Checksum.php
+2 −2 src/Gaufrette/Util/Path.php
+25 −0 src/Gaufrette/Util/Size.php
+0 −66 tests/Gaufrette/Adapter/AbstractFunctionalTest.php
+1 −70 tests/Gaufrette/Adapter/AmazonS3Test.php
+14 −107 tests/Gaufrette/Adapter/ApcTest.php
+9 −0 tests/Gaufrette/Adapter/DoctrineDbalTest.php
+7 −0 tests/Gaufrette/Adapter/DropboxTest.php
+7 −0 tests/Gaufrette/Adapter/FtpTest.php
+159 −0 tests/Gaufrette/Adapter/FunctionalTestCase.php
+1 −91 tests/Gaufrette/Adapter/GridFSTest.php
+12 −14 tests/Gaufrette/Adapter/InMemoryTest.php
+0 −48 tests/Gaufrette/Adapter/LocalFunctionalTest.php
+26 −6 tests/Gaufrette/Adapter/LocalTest.php
+6 −84 tests/Gaufrette/Adapter/MogileFSTest.php
+32 −8 tests/Gaufrette/Adapter/SafeLocalTest.php
+7 −0 tests/Gaufrette/Adapter/SftpTest.php
+51 −0 tests/Gaufrette/Adapter/ZipTest.php
+ tests/Gaufrette/Adapter/fixtures/adapter.zip
+0 −62 tests/Gaufrette/ChecksumTest.php
+0 −36 tests/Gaufrette/FileCursor/IteratorWrapperTest.php
+0 −18 tests/Gaufrette/FileTest.php
+28 −0 tests/Gaufrette/Util/ChecksumTest.php
+1 −1 tests/Gaufrette/Util/PathTest.php
+30 −0 tests/Gaufrette/Util/SizeTest.php
+10 −0 tests/adapters/AmazonS3.php.dist
+31 −0 tests/adapters/DoctrineDbal.php.dist
+59 −0 tests/adapters/Dropbox.php.dist
+9 −0 tests/adapters/Ftp.php.dist
+10 −0 tests/adapters/GridFS.php.dist
+9 −0 tests/adapters/MogileFS.php.dist
+12 −0 tests/adapters/Sftp.php.dist
+8 −2 tests/bootstrap.php.dist

0 comments on commit 454883b

Please sign in to comment.