baked_file_system
Version, currently 0.9.69 versions
github.com/axentro/baked_file_system
Virtual File System for Crystal language. Embedding your assets into final binary.
Nothing has been indexed for 0.9.6 yet. The tag is recorded, its shard.yml has not been read, so the manifest and dependency list below are empty because they are unknown rather than because they are absent.
Installation
# Add this to your shard.yml
dependencies:
baked_file_system:
github: axentro/baked_file_system
version: ~> 0.9.6Then run:
shards installshard.yml
No shard.yml has been indexed for 0.9.6. You can read it on the repository.
Dependencies
Unknown: the shard.yml for this version has not been read yet.
README
This README is the one indexed from the repository at its latest ref, not from the tag for this version.
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:
dependencies:
baked_file_system:
github: schovi/baked_file_system
version: 0.9.8
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.
require "baked_file_system"
class FileStorage
extend BakedFileSystem
bake_folder "/home/my_name/work/crystal_project/public"
bake_folder "../public"
end
Files can be loaded using get and get? class methods.
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.
begin
FileStorage.get "missing/file"
rescue BakedFileSystem::NoSuchFileError
puts "File #{path} is missing"
end
FileStorage.get? "missing/file" # => nil
Development
TODO: Write development instructions here
Contributing
- Fork it ( https://github.com/schovi/baked_file_system/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- schovi David Schovanec - creator, maintainer
Documentation
Built from the current release. The first visit to a release nobody has asked for starts its build.
Links
This release
- Version
0.9.6- Tagged
- Feb 11, 2021
- Commit
668ca5f501e4- Indexed
- not yet
Dependents
Repository
github.com/axentro/baked_file_system
Metadata
- Created
- Aug 16, 2026
- Updated
- Sep 23, 2026
- Synced
- Sep 23, 2026
- Versions
- 9