├── .autotest ├── .gitignore ├── .yardopts ├── Gemfile ├── README.md ├── Rakefile ├── TODO ├── el_finder.gemspec ├── lib ├── el_finder.rb └── el_finder │ ├── action.rb │ ├── base64.rb │ ├── connector.rb │ ├── image.rb │ ├── mime_type.rb │ ├── pathname.rb │ └── version.rb └── test ├── el_finder ├── test_image.rb ├── test_mime_type.rb └── test_pathname.rb ├── el_finder_test_case.rb ├── files ├── README.txt ├── elfinder.png ├── foo │ ├── philip.txt │ ├── sam.txt │ ├── sandy.txt │ └── tom.txt ├── pjkh.png └── sample.zip ├── test_el_finder.rb ├── test_el_finder_action.rb ├── test_el_finder_archivers.rb ├── test_el_finder_extractors.rb ├── test_el_finder_hash.rb ├── test_el_finder_options.rb ├── test_el_finder_permissions.rb ├── test_el_finder_symlink.rb └── test_el_finder_thumbs.rb /.autotest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/.autotest -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/.gitignore -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/.yardopts -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/Rakefile -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | - Complain if root directory is missing. 2 | -------------------------------------------------------------------------------- /el_finder.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/el_finder.gemspec -------------------------------------------------------------------------------- /lib/el_finder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/lib/el_finder.rb -------------------------------------------------------------------------------- /lib/el_finder/action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/lib/el_finder/action.rb -------------------------------------------------------------------------------- /lib/el_finder/base64.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/lib/el_finder/base64.rb -------------------------------------------------------------------------------- /lib/el_finder/connector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/lib/el_finder/connector.rb -------------------------------------------------------------------------------- /lib/el_finder/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/lib/el_finder/image.rb -------------------------------------------------------------------------------- /lib/el_finder/mime_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/lib/el_finder/mime_type.rb -------------------------------------------------------------------------------- /lib/el_finder/pathname.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/lib/el_finder/pathname.rb -------------------------------------------------------------------------------- /lib/el_finder/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/lib/el_finder/version.rb -------------------------------------------------------------------------------- /test/el_finder/test_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/test/el_finder/test_image.rb -------------------------------------------------------------------------------- /test/el_finder/test_mime_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/test/el_finder/test_mime_type.rb -------------------------------------------------------------------------------- /test/el_finder/test_pathname.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/test/el_finder/test_pathname.rb -------------------------------------------------------------------------------- /test/el_finder_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/test/el_finder_test_case.rb -------------------------------------------------------------------------------- /test/files/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/test/files/README.txt -------------------------------------------------------------------------------- /test/files/elfinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/test/files/elfinder.png -------------------------------------------------------------------------------- /test/files/foo/philip.txt: -------------------------------------------------------------------------------- 1 | philip 2 | -------------------------------------------------------------------------------- /test/files/foo/sam.txt: -------------------------------------------------------------------------------- 1 | sam 2 | -------------------------------------------------------------------------------- /test/files/foo/sandy.txt: -------------------------------------------------------------------------------- 1 | sandy 2 | -------------------------------------------------------------------------------- /test/files/foo/tom.txt: -------------------------------------------------------------------------------- 1 | tom 2 | -------------------------------------------------------------------------------- /test/files/pjkh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/test/files/pjkh.png -------------------------------------------------------------------------------- /test/files/sample.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/test/files/sample.zip -------------------------------------------------------------------------------- /test/test_el_finder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/test/test_el_finder.rb -------------------------------------------------------------------------------- /test/test_el_finder_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/test/test_el_finder_action.rb -------------------------------------------------------------------------------- /test/test_el_finder_archivers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/test/test_el_finder_archivers.rb -------------------------------------------------------------------------------- /test/test_el_finder_extractors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/test/test_el_finder_extractors.rb -------------------------------------------------------------------------------- /test/test_el_finder_hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/test/test_el_finder_hash.rb -------------------------------------------------------------------------------- /test/test_el_finder_options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/test/test_el_finder_options.rb -------------------------------------------------------------------------------- /test/test_el_finder_permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/test/test_el_finder_permissions.rb -------------------------------------------------------------------------------- /test/test_el_finder_symlink.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/test/test_el_finder_symlink.rb -------------------------------------------------------------------------------- /test/test_el_finder_thumbs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phallstrom/el_finder/HEAD/test/test_el_finder_thumbs.rb --------------------------------------------------------------------------------