├── .devcontainer
└── devcontainer.json
├── .github
└── workflows
│ ├── ci.yml
│ └── release.yml
├── .gitignore
├── APACHE-LICENSE
├── Gemfile
├── MIT-LICENSE
├── README.md
├── Rakefile
├── bin
├── console
└── rake
├── data
├── custom.xml
└── tika.xml
├── lib
├── marcel.rb
└── marcel
│ ├── magic.rb
│ ├── mime_type.rb
│ ├── mime_type
│ └── definitions.rb
│ ├── tables.rb
│ └── version.rb
├── marcel.gemspec
├── script
├── download_tika_data.rb
└── generate_tables.rb
└── test
├── declared_type_test.rb
├── extension_test.rb
├── fixtures
├── image.gif
├── magic
│ ├── application
│ │ ├── msword
│ │ │ └── msword.doc
│ │ ├── pdf
│ │ │ ├── illustrator-seen-as-pdf.ai
│ │ │ └── pdf.pdf
│ │ ├── postscript
│ │ │ ├── illustrator.eps
│ │ │ └── photoshop.eps
│ │ ├── rtf
│ │ │ └── rtf.rtf
│ │ ├── vnd.adobe.flash.movie
│ │ │ └── flash.swf
│ │ ├── vnd.ms-access
│ │ │ ├── db.accdb
│ │ │ ├── db.accde
│ │ │ ├── db.mdb
│ │ │ └── db.mde
│ │ ├── vnd.oasis.opendocument.spreadsheet
│ │ │ └── vnd.oasis.opendocument.spreadsheet.ods
│ │ ├── vnd.oasis.opendocument.text
│ │ │ └── vnd.oasis.opendocument.text.odt
│ │ ├── vnd.openxmlformats-officedocument.presentationml.presentation
│ │ │ ├── converted_from_google_slide.pptx
│ │ │ └── vnd.openxmlformats-officedocument.presentationml.presentation.pptx
│ │ ├── vnd.openxmlformats-officedocument.spreadsheetml.sheet
│ │ │ ├── converted_from_google_sheet.xlsx
│ │ │ └── vnd.openxmlformats-officedocument.spreadsheetml.sheet.xlsx
│ │ ├── vnd.openxmlformats-officedocument.wordprocessingml.document
│ │ │ ├── converted_from_google_doc.docx
│ │ │ └── vnd.openxmlformats-officedocument.wordprocessingml.document.docx
│ │ ├── x-ole-storage
│ │ │ └── oft.oft
│ │ ├── x-x509-ca-cert
│ │ │ └── x-x509-ca-cert.pem
│ │ ├── xml
│ │ │ └── xml.xml
│ │ └── zip
│ │ │ ├── sketch.sketch
│ │ │ └── zip.zip
│ ├── audio
│ │ ├── flac.flac
│ │ ├── mp4
│ │ │ ├── m4a.m4a
│ │ │ └── mp4.m4a
│ │ ├── mpc
│ │ │ └── musepack.mpc
│ │ ├── mpeg
│ │ │ └── mpeg.mp3
│ │ ├── ogg.ogg
│ │ ├── webm
│ │ │ └── webm.webm
│ │ └── x-wav.wav
│ ├── font
│ │ ├── otf.otf
│ │ ├── ttf.ttf
│ │ ├── woff.woff
│ │ └── woff2.woff2
│ ├── image
│ │ ├── avif
│ │ │ └── avif.avif
│ │ ├── bmp
│ │ │ └── bmp.bmp
│ │ ├── gif
│ │ │ └── gif.gif
│ │ ├── jpeg
│ │ │ └── jpeg.jpg
│ │ ├── png
│ │ │ └── png.png
│ │ ├── svg+xml
│ │ │ ├── svg.svg
│ │ │ ├── svg_with_comment.svg
│ │ │ ├── svg_with_document_type_declaration.svg
│ │ │ ├── svg_with_newline_in_svg_tag.svg
│ │ │ └── svg_with_xml_declaration.svg
│ │ ├── tiff
│ │ │ └── tiff.tif
│ │ ├── vnd.adobe.photoshop
│ │ │ ├── photoshop-large-document-format.psb
│ │ │ └── vnd.adobe.photoshop.psd
│ │ ├── vnd.dwg
│ │ │ └── x-dwg.dwg
│ │ ├── vnd.microsoft.icon
│ │ │ └── ico.ico
│ │ └── webp
│ │ │ └── webp.webp
│ ├── text
│ │ ├── html
│ │ │ ├── html.html
│ │ │ └── html_with_svg.html
│ │ └── vcard.vcf
│ └── video
│ │ ├── mp4
│ │ ├── m4v.m4v
│ │ └── mp4.mp4
│ │ ├── quicktime
│ │ └── quicktime.mov
│ │ └── webm
│ │ ├── webm.mkv
│ │ └── webm.webm
└── name
│ ├── application
│ ├── illustrator
│ │ └── illustrator.ai
│ ├── json
│ │ └── json.json
│ ├── msword
│ │ └── msword.doc
│ ├── pdf
│ │ └── pdf.pdf
│ ├── postscript
│ │ ├── illustrator.eps
│ │ └── photoshop.eps
│ ├── rtf
│ │ └── rtf.rtf
│ ├── sql
│ │ └── sql.sql
│ ├── vnd.adobe.flash.movie
│ │ └── flash.swf
│ ├── vnd.android.package-archive
│ │ └── vnd.android.package-archive.apk
│ ├── vnd.apple.keynote
│ │ └── vnd.apple.keynote.key
│ ├── vnd.apple.numbers
│ │ └── vnd.apple.numbers.numbers
│ ├── vnd.apple.pages
│ │ └── vnd.apple.pages.pages
│ ├── vnd.ms-access
│ │ ├── db.accdb
│ │ ├── db.accde
│ │ ├── db.mdb
│ │ └── db.mde
│ ├── vnd.ms-excel.sheet.binary.macroenabled.12
│ │ └── vnd.ms-excel.sheet.binary.macroenabled.12.xlsb
│ ├── vnd.ms-excel.sheet.macroenabled.12
│ │ └── vnd.ms-excel.sheet.macroenabled.12.xlsm
│ ├── vnd.ms-excel.template.macroenabled.12
│ │ └── vnd.ms-excel.template.macroenabled.12.xltm
│ ├── vnd.ms-excel
│ │ └── vnd.ms-excel.xls
│ ├── vnd.ms-powerpoint.presentation.macroenabled.12
│ │ └── vnd.ms-powerpoint.presentation.macroenabled.12.pptm
│ ├── vnd.ms-powerpoint.slideshow.macroenabled.12
│ │ └── vnd.ms-powerpoint.slideshow.macroenabled.12.ppsm
│ ├── vnd.ms-powerpoint.template.macroenabled.12
│ │ └── vnd.ms-powerpoint.template.macroenabled.12.potm
│ ├── vnd.ms-powerpoint
│ │ └── vnd.ms-powerpoint.ppt
│ ├── vnd.ms-word.document.macroenabled.12
│ │ └── vnd.ms-word.document.macroenabled.12.docm
│ ├── vnd.ms-word.template.macroenabled.12
│ │ └── vnd.ms-word.template.macroenabled.12.dotm
│ ├── vnd.openxmlformats-officedocument.presentationml.presentation
│ │ └── vnd.openxmlformats-officedocument.presentationml.presentation.pptx
│ ├── vnd.openxmlformats-officedocument.presentationml.slideshow
│ │ └── vnd.openxmlformats-officedocument.presentationml.slideshow.ppsx
│ ├── vnd.openxmlformats-officedocument.presentationml.template
│ │ └── vnd.openxmlformats-officedocument.presentationml.template.potx
│ ├── vnd.openxmlformats-officedocument.spreadsheetml.sheet
│ │ ├── downloaded-from-google-docs.xlsx
│ │ └── vnd.openxmlformats-officedocument.spreadsheetml.sheet.xlsx
│ ├── vnd.openxmlformats-officedocument.wordprocessingml.document
│ │ └── vnd.openxmlformats-officedocument.wordprocessingml.document.docx
│ ├── vnd.openxmlformats-officedocument.wordprocessingml.template
│ │ └── vnd.openxmlformats-officedocument.wordprocessingml.template.dotx
│ ├── x-x509-ca-cert
│ │ └── x-x509-ca-cert.pem
│ └── zip
│ │ └── zip.zip
│ ├── audio
│ ├── aac.aac
│ ├── flac.flac
│ ├── mp4
│ │ └── mp4.m4a
│ ├── mpc
│ │ └── musepack.mpc
│ ├── mpeg
│ │ └── mpeg.mp3
│ ├── ogg.ogg
│ └── x-wav.wav
│ ├── font
│ ├── otf.otf
│ ├── ttf.ttf
│ ├── woff.woff
│ └── woff2.woff2
│ ├── image
│ ├── bmp
│ │ └── bmp.bmp
│ ├── gif
│ │ └── gif.gif
│ ├── heic.heic
│ ├── heif.heif
│ ├── jpeg
│ │ └── jpeg.jpg
│ ├── png
│ │ └── png.png
│ ├── svg+xml
│ │ └── svg.svg
│ ├── tiff
│ │ ├── tiff.tif
│ │ └── tiff.tiff
│ ├── vnd.adobe.photoshop
│ │ ├── saved-as-large-document-format.psb
│ │ └── vnd.adobe.photoshop.psd
│ ├── x-raw-canon
│ │ └── cr2.cr2
│ └── x-raw-sony
│ │ └── arw.arw
│ ├── message
│ └── rfc822
│ │ └── rfc822.eml
│ ├── text
│ ├── css.css
│ ├── csv
│ │ └── csv.csv
│ ├── html
│ │ └── html.html
│ ├── javascript
│ │ └── javascript.js
│ ├── markdown
│ │ ├── sample.markdown
│ │ ├── sample.md
│ │ ├── sample.mdtext
│ │ └── sample.mkd
│ ├── plain
│ │ ├── plain.asc
│ │ └── plain.txt
│ ├── vcard.vcf
│ ├── x-log
│ │ └── x-log.log
│ ├── x-sass
│ │ └── sass.sass
│ └── x-scss
│ │ └── scss.scss
│ └── video
│ ├── mp4
│ └── mp4.mp4
│ └── quicktime
│ └── quicktime.mov
├── illustrator_test.rb
├── magic_and_declared_type_test.rb
├── magic_and_name_test.rb
├── magic_test.rb
├── mime_type_test.rb
├── name_test.rb
└── test_helper.rb
/.devcontainer/devcontainer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/.devcontainer/devcontainer.json
--------------------------------------------------------------------------------
/.github/workflows/ci.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/.github/workflows/ci.yml
--------------------------------------------------------------------------------
/.github/workflows/release.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/.github/workflows/release.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | Gemfile.lock
2 | *.gem
3 | .byebug_history
4 |
--------------------------------------------------------------------------------
/APACHE-LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/APACHE-LICENSE
--------------------------------------------------------------------------------
/Gemfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/Gemfile
--------------------------------------------------------------------------------
/MIT-LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/MIT-LICENSE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/README.md
--------------------------------------------------------------------------------
/Rakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/Rakefile
--------------------------------------------------------------------------------
/bin/console:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/bin/console
--------------------------------------------------------------------------------
/bin/rake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/bin/rake
--------------------------------------------------------------------------------
/data/custom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/data/custom.xml
--------------------------------------------------------------------------------
/data/tika.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/data/tika.xml
--------------------------------------------------------------------------------
/lib/marcel.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/lib/marcel.rb
--------------------------------------------------------------------------------
/lib/marcel/magic.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/lib/marcel/magic.rb
--------------------------------------------------------------------------------
/lib/marcel/mime_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/lib/marcel/mime_type.rb
--------------------------------------------------------------------------------
/lib/marcel/mime_type/definitions.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/lib/marcel/mime_type/definitions.rb
--------------------------------------------------------------------------------
/lib/marcel/tables.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/lib/marcel/tables.rb
--------------------------------------------------------------------------------
/lib/marcel/version.rb:
--------------------------------------------------------------------------------
1 | # frozen_string_literal: true
2 |
3 | module Marcel
4 | VERSION = "1.1.0"
5 | end
6 |
--------------------------------------------------------------------------------
/marcel.gemspec:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/marcel.gemspec
--------------------------------------------------------------------------------
/script/download_tika_data.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/script/download_tika_data.rb
--------------------------------------------------------------------------------
/script/generate_tables.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/script/generate_tables.rb
--------------------------------------------------------------------------------
/test/declared_type_test.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/declared_type_test.rb
--------------------------------------------------------------------------------
/test/extension_test.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/extension_test.rb
--------------------------------------------------------------------------------
/test/fixtures/image.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/image.gif
--------------------------------------------------------------------------------
/test/fixtures/magic/application/msword/msword.doc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/application/msword/msword.doc
--------------------------------------------------------------------------------
/test/fixtures/magic/application/pdf/illustrator-seen-as-pdf.ai:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/application/pdf/illustrator-seen-as-pdf.ai
--------------------------------------------------------------------------------
/test/fixtures/magic/application/pdf/pdf.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/application/pdf/pdf.pdf
--------------------------------------------------------------------------------
/test/fixtures/magic/application/postscript/illustrator.eps:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/application/postscript/illustrator.eps
--------------------------------------------------------------------------------
/test/fixtures/magic/application/postscript/photoshop.eps:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/application/postscript/photoshop.eps
--------------------------------------------------------------------------------
/test/fixtures/magic/application/rtf/rtf.rtf:
--------------------------------------------------------------------------------
1 | {\rtf1}
--------------------------------------------------------------------------------
/test/fixtures/magic/application/vnd.adobe.flash.movie/flash.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/application/vnd.adobe.flash.movie/flash.swf
--------------------------------------------------------------------------------
/test/fixtures/magic/application/vnd.ms-access/db.accdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/application/vnd.ms-access/db.accdb
--------------------------------------------------------------------------------
/test/fixtures/magic/application/vnd.ms-access/db.accde:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/application/vnd.ms-access/db.accde
--------------------------------------------------------------------------------
/test/fixtures/magic/application/vnd.ms-access/db.mdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/application/vnd.ms-access/db.mdb
--------------------------------------------------------------------------------
/test/fixtures/magic/application/vnd.ms-access/db.mde:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/application/vnd.ms-access/db.mde
--------------------------------------------------------------------------------
/test/fixtures/magic/application/vnd.oasis.opendocument.spreadsheet/vnd.oasis.opendocument.spreadsheet.ods:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/application/vnd.oasis.opendocument.spreadsheet/vnd.oasis.opendocument.spreadsheet.ods
--------------------------------------------------------------------------------
/test/fixtures/magic/application/vnd.oasis.opendocument.text/vnd.oasis.opendocument.text.odt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/application/vnd.oasis.opendocument.text/vnd.oasis.opendocument.text.odt
--------------------------------------------------------------------------------
/test/fixtures/magic/application/vnd.openxmlformats-officedocument.presentationml.presentation/converted_from_google_slide.pptx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/application/vnd.openxmlformats-officedocument.presentationml.presentation/converted_from_google_slide.pptx
--------------------------------------------------------------------------------
/test/fixtures/magic/application/vnd.openxmlformats-officedocument.presentationml.presentation/vnd.openxmlformats-officedocument.presentationml.presentation.pptx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/application/vnd.openxmlformats-officedocument.presentationml.presentation/vnd.openxmlformats-officedocument.presentationml.presentation.pptx
--------------------------------------------------------------------------------
/test/fixtures/magic/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet/converted_from_google_sheet.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet/converted_from_google_sheet.xlsx
--------------------------------------------------------------------------------
/test/fixtures/magic/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet/vnd.openxmlformats-officedocument.spreadsheetml.sheet.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet/vnd.openxmlformats-officedocument.spreadsheetml.sheet.xlsx
--------------------------------------------------------------------------------
/test/fixtures/magic/application/vnd.openxmlformats-officedocument.wordprocessingml.document/converted_from_google_doc.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/application/vnd.openxmlformats-officedocument.wordprocessingml.document/converted_from_google_doc.docx
--------------------------------------------------------------------------------
/test/fixtures/magic/application/vnd.openxmlformats-officedocument.wordprocessingml.document/vnd.openxmlformats-officedocument.wordprocessingml.document.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/application/vnd.openxmlformats-officedocument.wordprocessingml.document/vnd.openxmlformats-officedocument.wordprocessingml.document.docx
--------------------------------------------------------------------------------
/test/fixtures/magic/application/x-ole-storage/oft.oft:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/application/x-ole-storage/oft.oft
--------------------------------------------------------------------------------
/test/fixtures/magic/application/x-x509-ca-cert/x-x509-ca-cert.pem:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/application/x-x509-ca-cert/x-x509-ca-cert.pem
--------------------------------------------------------------------------------
/test/fixtures/magic/application/xml/xml.xml:
--------------------------------------------------------------------------------
1 | <_/>
--------------------------------------------------------------------------------
/test/fixtures/magic/application/zip/sketch.sketch:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/application/zip/sketch.sketch
--------------------------------------------------------------------------------
/test/fixtures/magic/application/zip/zip.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/application/zip/zip.zip
--------------------------------------------------------------------------------
/test/fixtures/magic/audio/flac.flac:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/audio/flac.flac
--------------------------------------------------------------------------------
/test/fixtures/magic/audio/mp4/m4a.m4a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/audio/mp4/m4a.m4a
--------------------------------------------------------------------------------
/test/fixtures/magic/audio/mp4/mp4.m4a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/audio/mp4/mp4.m4a
--------------------------------------------------------------------------------
/test/fixtures/magic/audio/mpc/musepack.mpc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/audio/mpc/musepack.mpc
--------------------------------------------------------------------------------
/test/fixtures/magic/audio/mpeg/mpeg.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/audio/mpeg/mpeg.mp3
--------------------------------------------------------------------------------
/test/fixtures/magic/audio/ogg.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/audio/ogg.ogg
--------------------------------------------------------------------------------
/test/fixtures/magic/audio/webm/webm.webm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/audio/webm/webm.webm
--------------------------------------------------------------------------------
/test/fixtures/magic/audio/x-wav.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/audio/x-wav.wav
--------------------------------------------------------------------------------
/test/fixtures/magic/font/otf.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/font/otf.otf
--------------------------------------------------------------------------------
/test/fixtures/magic/font/ttf.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/font/ttf.ttf
--------------------------------------------------------------------------------
/test/fixtures/magic/font/woff.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/font/woff.woff
--------------------------------------------------------------------------------
/test/fixtures/magic/font/woff2.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/font/woff2.woff2
--------------------------------------------------------------------------------
/test/fixtures/magic/image/avif/avif.avif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/image/avif/avif.avif
--------------------------------------------------------------------------------
/test/fixtures/magic/image/bmp/bmp.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/image/bmp/bmp.bmp
--------------------------------------------------------------------------------
/test/fixtures/magic/image/gif/gif.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/image/gif/gif.gif
--------------------------------------------------------------------------------
/test/fixtures/magic/image/jpeg/jpeg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/image/jpeg/jpeg.jpg
--------------------------------------------------------------------------------
/test/fixtures/magic/image/png/png.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/image/png/png.png
--------------------------------------------------------------------------------
/test/fixtures/magic/image/svg+xml/svg.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/test/fixtures/magic/image/svg+xml/svg_with_comment.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/test/fixtures/magic/image/svg+xml/svg_with_document_type_declaration.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/image/svg+xml/svg_with_document_type_declaration.svg
--------------------------------------------------------------------------------
/test/fixtures/magic/image/svg+xml/svg_with_newline_in_svg_tag.svg:
--------------------------------------------------------------------------------
1 |
3 |
--------------------------------------------------------------------------------
/test/fixtures/magic/image/svg+xml/svg_with_xml_declaration.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/fixtures/magic/image/tiff/tiff.tif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/image/tiff/tiff.tif
--------------------------------------------------------------------------------
/test/fixtures/magic/image/vnd.adobe.photoshop/photoshop-large-document-format.psb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/image/vnd.adobe.photoshop/photoshop-large-document-format.psb
--------------------------------------------------------------------------------
/test/fixtures/magic/image/vnd.adobe.photoshop/vnd.adobe.photoshop.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/image/vnd.adobe.photoshop/vnd.adobe.photoshop.psd
--------------------------------------------------------------------------------
/test/fixtures/magic/image/vnd.dwg/x-dwg.dwg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/image/vnd.dwg/x-dwg.dwg
--------------------------------------------------------------------------------
/test/fixtures/magic/image/vnd.microsoft.icon/ico.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/image/vnd.microsoft.icon/ico.ico
--------------------------------------------------------------------------------
/test/fixtures/magic/image/webp/webp.webp:
--------------------------------------------------------------------------------
1 | RIFF WEBPVP8L /Alo k
--------------------------------------------------------------------------------
/test/fixtures/magic/text/html/html.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/text/html/html.html
--------------------------------------------------------------------------------
/test/fixtures/magic/text/html/html_with_svg.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/text/html/html_with_svg.html
--------------------------------------------------------------------------------
/test/fixtures/magic/text/vcard.vcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/text/vcard.vcf
--------------------------------------------------------------------------------
/test/fixtures/magic/video/mp4/m4v.m4v:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/video/mp4/m4v.m4v
--------------------------------------------------------------------------------
/test/fixtures/magic/video/mp4/mp4.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/video/mp4/mp4.mp4
--------------------------------------------------------------------------------
/test/fixtures/magic/video/quicktime/quicktime.mov:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/video/quicktime/quicktime.mov
--------------------------------------------------------------------------------
/test/fixtures/magic/video/webm/webm.mkv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/video/webm/webm.mkv
--------------------------------------------------------------------------------
/test/fixtures/magic/video/webm/webm.webm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/magic/video/webm/webm.webm
--------------------------------------------------------------------------------
/test/fixtures/name/application/illustrator/illustrator.ai:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/illustrator/illustrator.ai
--------------------------------------------------------------------------------
/test/fixtures/name/application/json/json.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "JSON"
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/name/application/msword/msword.doc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/msword/msword.doc
--------------------------------------------------------------------------------
/test/fixtures/name/application/pdf/pdf.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/pdf/pdf.pdf
--------------------------------------------------------------------------------
/test/fixtures/name/application/postscript/illustrator.eps:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/postscript/illustrator.eps
--------------------------------------------------------------------------------
/test/fixtures/name/application/postscript/photoshop.eps:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/postscript/photoshop.eps
--------------------------------------------------------------------------------
/test/fixtures/name/application/rtf/rtf.rtf:
--------------------------------------------------------------------------------
1 | {\rtf1}
--------------------------------------------------------------------------------
/test/fixtures/name/application/sql/sql.sql:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.adobe.flash.movie/flash.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.adobe.flash.movie/flash.swf
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.android.package-archive/vnd.android.package-archive.apk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.android.package-archive/vnd.android.package-archive.apk
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.apple.keynote/vnd.apple.keynote.key:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.apple.keynote/vnd.apple.keynote.key
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.apple.numbers/vnd.apple.numbers.numbers:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.apple.numbers/vnd.apple.numbers.numbers
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.apple.pages/vnd.apple.pages.pages:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.apple.pages/vnd.apple.pages.pages
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.ms-access/db.accdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.ms-access/db.accdb
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.ms-access/db.accde:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.ms-access/db.accde
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.ms-access/db.mdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.ms-access/db.mdb
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.ms-access/db.mde:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.ms-access/db.mde
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.ms-excel.sheet.binary.macroenabled.12/vnd.ms-excel.sheet.binary.macroenabled.12.xlsb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.ms-excel.sheet.binary.macroenabled.12/vnd.ms-excel.sheet.binary.macroenabled.12.xlsb
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.ms-excel.sheet.macroenabled.12/vnd.ms-excel.sheet.macroenabled.12.xlsm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.ms-excel.sheet.macroenabled.12/vnd.ms-excel.sheet.macroenabled.12.xlsm
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.ms-excel.template.macroenabled.12/vnd.ms-excel.template.macroenabled.12.xltm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.ms-excel.template.macroenabled.12/vnd.ms-excel.template.macroenabled.12.xltm
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.ms-excel/vnd.ms-excel.xls:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.ms-excel/vnd.ms-excel.xls
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.ms-powerpoint.presentation.macroenabled.12/vnd.ms-powerpoint.presentation.macroenabled.12.pptm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.ms-powerpoint.presentation.macroenabled.12/vnd.ms-powerpoint.presentation.macroenabled.12.pptm
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.ms-powerpoint.slideshow.macroenabled.12/vnd.ms-powerpoint.slideshow.macroenabled.12.ppsm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.ms-powerpoint.slideshow.macroenabled.12/vnd.ms-powerpoint.slideshow.macroenabled.12.ppsm
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.ms-powerpoint.template.macroenabled.12/vnd.ms-powerpoint.template.macroenabled.12.potm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.ms-powerpoint.template.macroenabled.12/vnd.ms-powerpoint.template.macroenabled.12.potm
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.ms-powerpoint/vnd.ms-powerpoint.ppt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.ms-powerpoint/vnd.ms-powerpoint.ppt
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.ms-word.document.macroenabled.12/vnd.ms-word.document.macroenabled.12.docm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.ms-word.document.macroenabled.12/vnd.ms-word.document.macroenabled.12.docm
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.ms-word.template.macroenabled.12/vnd.ms-word.template.macroenabled.12.dotm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.ms-word.template.macroenabled.12/vnd.ms-word.template.macroenabled.12.dotm
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.openxmlformats-officedocument.presentationml.presentation/vnd.openxmlformats-officedocument.presentationml.presentation.pptx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.openxmlformats-officedocument.presentationml.presentation/vnd.openxmlformats-officedocument.presentationml.presentation.pptx
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.openxmlformats-officedocument.presentationml.slideshow/vnd.openxmlformats-officedocument.presentationml.slideshow.ppsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.openxmlformats-officedocument.presentationml.slideshow/vnd.openxmlformats-officedocument.presentationml.slideshow.ppsx
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.openxmlformats-officedocument.presentationml.template/vnd.openxmlformats-officedocument.presentationml.template.potx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.openxmlformats-officedocument.presentationml.template/vnd.openxmlformats-officedocument.presentationml.template.potx
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet/downloaded-from-google-docs.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet/downloaded-from-google-docs.xlsx
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet/vnd.openxmlformats-officedocument.spreadsheetml.sheet.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet/vnd.openxmlformats-officedocument.spreadsheetml.sheet.xlsx
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.openxmlformats-officedocument.wordprocessingml.document/vnd.openxmlformats-officedocument.wordprocessingml.document.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.openxmlformats-officedocument.wordprocessingml.document/vnd.openxmlformats-officedocument.wordprocessingml.document.docx
--------------------------------------------------------------------------------
/test/fixtures/name/application/vnd.openxmlformats-officedocument.wordprocessingml.template/vnd.openxmlformats-officedocument.wordprocessingml.template.dotx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/vnd.openxmlformats-officedocument.wordprocessingml.template/vnd.openxmlformats-officedocument.wordprocessingml.template.dotx
--------------------------------------------------------------------------------
/test/fixtures/name/application/x-x509-ca-cert/x-x509-ca-cert.pem:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/x-x509-ca-cert/x-x509-ca-cert.pem
--------------------------------------------------------------------------------
/test/fixtures/name/application/zip/zip.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/application/zip/zip.zip
--------------------------------------------------------------------------------
/test/fixtures/name/audio/aac.aac:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/audio/aac.aac
--------------------------------------------------------------------------------
/test/fixtures/name/audio/flac.flac:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/audio/flac.flac
--------------------------------------------------------------------------------
/test/fixtures/name/audio/mp4/mp4.m4a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/audio/mp4/mp4.m4a
--------------------------------------------------------------------------------
/test/fixtures/name/audio/mpc/musepack.mpc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/audio/mpc/musepack.mpc
--------------------------------------------------------------------------------
/test/fixtures/name/audio/mpeg/mpeg.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/audio/mpeg/mpeg.mp3
--------------------------------------------------------------------------------
/test/fixtures/name/audio/ogg.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/audio/ogg.ogg
--------------------------------------------------------------------------------
/test/fixtures/name/audio/x-wav.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/audio/x-wav.wav
--------------------------------------------------------------------------------
/test/fixtures/name/font/otf.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/font/otf.otf
--------------------------------------------------------------------------------
/test/fixtures/name/font/ttf.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/font/ttf.ttf
--------------------------------------------------------------------------------
/test/fixtures/name/font/woff.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/font/woff.woff
--------------------------------------------------------------------------------
/test/fixtures/name/font/woff2.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/font/woff2.woff2
--------------------------------------------------------------------------------
/test/fixtures/name/image/bmp/bmp.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/image/bmp/bmp.bmp
--------------------------------------------------------------------------------
/test/fixtures/name/image/gif/gif.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/image/gif/gif.gif
--------------------------------------------------------------------------------
/test/fixtures/name/image/heic.heic:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/image/heic.heic
--------------------------------------------------------------------------------
/test/fixtures/name/image/heif.heif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/image/heif.heif
--------------------------------------------------------------------------------
/test/fixtures/name/image/jpeg/jpeg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/image/jpeg/jpeg.jpg
--------------------------------------------------------------------------------
/test/fixtures/name/image/png/png.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/image/png/png.png
--------------------------------------------------------------------------------
/test/fixtures/name/image/svg+xml/svg.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/fixtures/name/image/tiff/tiff.tif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/image/tiff/tiff.tif
--------------------------------------------------------------------------------
/test/fixtures/name/image/tiff/tiff.tiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/image/tiff/tiff.tiff
--------------------------------------------------------------------------------
/test/fixtures/name/image/vnd.adobe.photoshop/saved-as-large-document-format.psb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/image/vnd.adobe.photoshop/saved-as-large-document-format.psb
--------------------------------------------------------------------------------
/test/fixtures/name/image/vnd.adobe.photoshop/vnd.adobe.photoshop.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/image/vnd.adobe.photoshop/vnd.adobe.photoshop.psd
--------------------------------------------------------------------------------
/test/fixtures/name/image/x-raw-canon/cr2.cr2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/image/x-raw-canon/cr2.cr2
--------------------------------------------------------------------------------
/test/fixtures/name/image/x-raw-sony/arw.arw:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/image/x-raw-sony/arw.arw
--------------------------------------------------------------------------------
/test/fixtures/name/message/rfc822/rfc822.eml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/message/rfc822/rfc822.eml
--------------------------------------------------------------------------------
/test/fixtures/name/text/css.css:
--------------------------------------------------------------------------------
1 | html {
2 | color: red;
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/name/text/csv/csv.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/text/csv/csv.csv
--------------------------------------------------------------------------------
/test/fixtures/name/text/html/html.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/text/html/html.html
--------------------------------------------------------------------------------
/test/fixtures/name/text/javascript/javascript.js:
--------------------------------------------------------------------------------
1 | function() {
2 | alert("test")
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/name/text/markdown/sample.markdown:
--------------------------------------------------------------------------------
1 | # Hello World
2 |
--------------------------------------------------------------------------------
/test/fixtures/name/text/markdown/sample.md:
--------------------------------------------------------------------------------
1 | # Hello World
2 |
--------------------------------------------------------------------------------
/test/fixtures/name/text/markdown/sample.mdtext:
--------------------------------------------------------------------------------
1 | # Hello World
2 |
--------------------------------------------------------------------------------
/test/fixtures/name/text/markdown/sample.mkd:
--------------------------------------------------------------------------------
1 | # Hello World
2 |
--------------------------------------------------------------------------------
/test/fixtures/name/text/plain/plain.asc:
--------------------------------------------------------------------------------
1 | Marcel
2 |
--------------------------------------------------------------------------------
/test/fixtures/name/text/plain/plain.txt:
--------------------------------------------------------------------------------
1 | Marcel
2 |
--------------------------------------------------------------------------------
/test/fixtures/name/text/vcard.vcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/text/vcard.vcf
--------------------------------------------------------------------------------
/test/fixtures/name/text/x-log/x-log.log:
--------------------------------------------------------------------------------
1 | Some logging
2 |
--------------------------------------------------------------------------------
/test/fixtures/name/text/x-sass/sass.sass:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/text/x-sass/sass.sass
--------------------------------------------------------------------------------
/test/fixtures/name/text/x-scss/scss.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/text/x-scss/scss.scss
--------------------------------------------------------------------------------
/test/fixtures/name/video/mp4/mp4.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/video/mp4/mp4.mp4
--------------------------------------------------------------------------------
/test/fixtures/name/video/quicktime/quicktime.mov:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/fixtures/name/video/quicktime/quicktime.mov
--------------------------------------------------------------------------------
/test/illustrator_test.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/illustrator_test.rb
--------------------------------------------------------------------------------
/test/magic_and_declared_type_test.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/magic_and_declared_type_test.rb
--------------------------------------------------------------------------------
/test/magic_and_name_test.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/magic_and_name_test.rb
--------------------------------------------------------------------------------
/test/magic_test.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/magic_test.rb
--------------------------------------------------------------------------------
/test/mime_type_test.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/mime_type_test.rb
--------------------------------------------------------------------------------
/test/name_test.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/name_test.rb
--------------------------------------------------------------------------------
/test/test_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rails/marcel/HEAD/test/test_helper.rb
--------------------------------------------------------------------------------