├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── birdie_snapshots ├── cmd1_help.accepted ├── cmd2_help.accepted ├── cmd3_help.accepted ├── cmd4_help.accepted ├── cmd6_help.accepted ├── cmd6_help_with_residual_args.accepted ├── cmd7_help.accepted ├── cmd7_help_with_residual_args.accepted ├── root_help.accepted └── udhr.accepted ├── gleam.toml ├── manifest.toml ├── renovate.json ├── src ├── glint.gleam └── glint │ ├── constraint.gleam │ └── internal │ ├── help.gleam │ └── utils.gleam └── test ├── contraint_test.gleam ├── examples ├── hello.gleam └── hello_test.gleam ├── flag_test.gleam ├── glint └── internal │ └── utils_test.gleam └── glint_test.gleam /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/README.md -------------------------------------------------------------------------------- /birdie_snapshots/cmd1_help.accepted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/birdie_snapshots/cmd1_help.accepted -------------------------------------------------------------------------------- /birdie_snapshots/cmd2_help.accepted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/birdie_snapshots/cmd2_help.accepted -------------------------------------------------------------------------------- /birdie_snapshots/cmd3_help.accepted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/birdie_snapshots/cmd3_help.accepted -------------------------------------------------------------------------------- /birdie_snapshots/cmd4_help.accepted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/birdie_snapshots/cmd4_help.accepted -------------------------------------------------------------------------------- /birdie_snapshots/cmd6_help.accepted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/birdie_snapshots/cmd6_help.accepted -------------------------------------------------------------------------------- /birdie_snapshots/cmd6_help_with_residual_args.accepted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/birdie_snapshots/cmd6_help_with_residual_args.accepted -------------------------------------------------------------------------------- /birdie_snapshots/cmd7_help.accepted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/birdie_snapshots/cmd7_help.accepted -------------------------------------------------------------------------------- /birdie_snapshots/cmd7_help_with_residual_args.accepted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/birdie_snapshots/cmd7_help_with_residual_args.accepted -------------------------------------------------------------------------------- /birdie_snapshots/root_help.accepted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/birdie_snapshots/root_help.accepted -------------------------------------------------------------------------------- /birdie_snapshots/udhr.accepted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/birdie_snapshots/udhr.accepted -------------------------------------------------------------------------------- /gleam.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/gleam.toml -------------------------------------------------------------------------------- /manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/manifest.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/renovate.json -------------------------------------------------------------------------------- /src/glint.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/src/glint.gleam -------------------------------------------------------------------------------- /src/glint/constraint.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/src/glint/constraint.gleam -------------------------------------------------------------------------------- /src/glint/internal/help.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/src/glint/internal/help.gleam -------------------------------------------------------------------------------- /src/glint/internal/utils.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/src/glint/internal/utils.gleam -------------------------------------------------------------------------------- /test/contraint_test.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/test/contraint_test.gleam -------------------------------------------------------------------------------- /test/examples/hello.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/test/examples/hello.gleam -------------------------------------------------------------------------------- /test/examples/hello_test.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/test/examples/hello_test.gleam -------------------------------------------------------------------------------- /test/flag_test.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/test/flag_test.gleam -------------------------------------------------------------------------------- /test/glint/internal/utils_test.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/test/glint/internal/utils_test.gleam -------------------------------------------------------------------------------- /test/glint_test.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanklesXL/glint/HEAD/test/glint_test.gleam --------------------------------------------------------------------------------