xdg
xdg
Crystal implementation of the XDG Base Directory Specification with cross-platform support (Linux, macOS, Windows)
Provides standardized access to application configuration, data, and cache directories while respecting platform conventions and environment variables.
Installation
- Add the dependency to your
shard.yml
:
dependencies:
xdg:
github: dsisnero/xdg
- Run
shards install
Usage
require "xdg"
# Access base directories
config_path = XDG.config_home # => ~/.config (Linux), ~/Library/Preferences (macOS), etc
data_path = XDG.data_home # => ~/.local/share (Linux), ~/Library/Application Support (macOS), etc
cache_path = XDG.cache_home # => ~/.cache (Linux), ~/Library/Caches (macOS), etc
# Platform-aware path construction
app_config = XDG.app_config("myapp", "1.0", vendor: "acme")
# => ~/.config/acme/myapp/1.0 (Linux)
# => ~/Library/Preferences/acme/myapp/1.0 (macOS App)
# => %APPDATA%\acme\myapp\1.0 (Windows)
# Ensure directories exist with secure permissions
XDG.ensure_directories!(0o750)
# Validate runtime directories
if runtime_dir = XDG.runtime_dir
puts "Secure runtime: #{XDG.valid_runtime_dir?(runtime_dir)}"
end
Platform Support:
- Linux: Follows XDG spec defaults
- macOS: Uses native paths unless in strict mode (
XDG_STRICT=true
) - Windows: Uses APPDATA/LOCALAPPDATA environment variables
Development
- Clone the repo:
git clone https://github.com/dsisnero/xdg.git
- Install dependencies:
shards install
- Run tests:
crystal spec
Key components:
src/xdg.cr
: Core implementationspec/xdg_spec.cr
: Comprehensive test suite- Platform-specific logic handled through compile-time flags
Contributing
- Fork it (https://github.com/dsisnero/xdg/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
Please include:
- Spec tests for new features
- Updates to documentation when applicable
- Cross-platform verification
Contributors
- Dominic Sisneros - creator and maintainer
Repository
xdg
Owner
Statistic
- 0
- 0
- 0
- 1
- 0
- 28 days ago
- March 6, 2025
License
MIT License
Links
Synced at
Thu, 03 Apr 2025 02:40:50 GMT
Languages