Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/schovi/baked_file_system
Virtual File System for Crystal language. Embedding your assets into final binary.
https://github.com/schovi/baked_file_system
Last synced: 5 days ago
JSON representation
Virtual File System for Crystal language. Embedding your assets into final binary.
- Host: GitHub
- URL: https://github.com/schovi/baked_file_system
- Owner: schovi
- License: mit
- Created: 2016-06-24T13:22:51.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-08-05T19:11:04.000Z (about 1 year ago)
- Last Synced: 2024-08-01T17:36:32.938Z (3 months ago)
- Language: Crystal
- Homepage:
- Size: 111 KB
- Stars: 177
- Watchers: 6
- Forks: 17
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-crystal - baked_file_system - Virtual file system implementation (System)
- awesome-crystal - baked_file_system - Virtual file system implementation (System)
- awesome-crystal - baked_file_system - Virtual file system implementation (System)
README
# Baked File System
Include (bake them) static files into a binary at compile time and access them anytime you need.
## Installation
Add this to your application's `shard.yml`:
```yaml
dependencies:
baked_file_system:
github: schovi/baked_file_system
version: 0.10.0
```## Usage
A custom type that extends `BakedFileSystem` is used as a file system. The macro `bake_folder` bakes all files in
a given path into the virtual file system. Both relative and absolute paths are supported, as well as baking multiple
folders.```crystal
require "baked_file_system"class FileStorage
extend BakedFileSystembake_folder "/home/my_name/work/crystal_project/public"
bake_folder "../public"
end```
Files can be loaded using `get` and `get?` class methods.
```crystal
file = FileStorage.get("path/to/file.png")file.gets_to_end # returns content of file
file.path # returns path of file
file.size # returns size of original file
```When try to get missing file, `get` raises a `BakedFileSystem::NoSuchFileError` exception
while `get?` returns `nil`.```crystal
begin
FileStorage.get "missing/file"
rescue BakedFileSystem::NoSuchFileError
puts "File #{path} is missing"
endFileStorage.get? "missing/file" # => nil
```## Development
TODO: Write development instructions here
## Contributing
1. Fork it ( https://github.com/schovi/baked_file_system/fork )
2. Create your feature branch (git checkout -b my-new-feature)
3. Commit your changes (git commit -am 'Add some feature')
4. Push to the branch (git push origin my-new-feature)
5. Create a new Pull Request## Contributors
- [schovi](https://github.com/schovi) David Schovanec
- [straight-shoota](https://github.com/straight-shoota) Johannes Müller