The DragonRuby Environment Manager
Install DragonRuby, manage versions and tiers, scaffold projects, and vendor your game's dependencies — one small, fast CLI.
curl -fsSL drenv.org/install.sh | bashdrenv is inspired by rbenv and Bundler. It keeps your DragonRuby installs tidy, your projects reproducible, and your dependencies vendored — on macOS, Linux, and Windows.
Declare a library, and drenv resolves it, pins it in a lockfile, and vendors it into your game. Commit the lockfile; everyone builds the exact same thing.
drenv add github:Nitemaeric/conjurationrequire 'app/drenv_bundle.rb'Then drenv run re-vendors everything and launches. Bump with drenv update, check with drenv outdated.
drenv install # download DragonRuby (asks which tier you own)
drenv new my-game # scaffold a project on that version
cd my-game
drenv run # launch it