├── .ameba.yml ├── .gitignore ├── Makefile ├── README.md ├── shard.yml ├── spec ├── def_visitor_spec.cr ├── sample_spec_files │ ├── all_def_examples.cr │ └── hello_world.cr ├── source_type_formatter_spec.cr ├── source_typer_spec.cr └── spec_helper.cr └── src ├── cli.cr ├── cli_options.cr ├── def_visitor.cr ├── ext └── crystal_config.cr ├── requires.cr ├── signature.cr ├── source_type_formatter.cr └── source_typer.cr /.ameba.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vici37/cr-source-typer/HEAD/.ameba.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vici37/cr-source-typer/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vici37/cr-source-typer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vici37/cr-source-typer/HEAD/README.md -------------------------------------------------------------------------------- /shard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vici37/cr-source-typer/HEAD/shard.yml -------------------------------------------------------------------------------- /spec/def_visitor_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vici37/cr-source-typer/HEAD/spec/def_visitor_spec.cr -------------------------------------------------------------------------------- /spec/sample_spec_files/all_def_examples.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vici37/cr-source-typer/HEAD/spec/sample_spec_files/all_def_examples.cr -------------------------------------------------------------------------------- /spec/sample_spec_files/hello_world.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vici37/cr-source-typer/HEAD/spec/sample_spec_files/hello_world.cr -------------------------------------------------------------------------------- /spec/source_type_formatter_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vici37/cr-source-typer/HEAD/spec/source_type_formatter_spec.cr -------------------------------------------------------------------------------- /spec/source_typer_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vici37/cr-source-typer/HEAD/spec/source_typer_spec.cr -------------------------------------------------------------------------------- /spec/spec_helper.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vici37/cr-source-typer/HEAD/spec/spec_helper.cr -------------------------------------------------------------------------------- /src/cli.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vici37/cr-source-typer/HEAD/src/cli.cr -------------------------------------------------------------------------------- /src/cli_options.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vici37/cr-source-typer/HEAD/src/cli_options.cr -------------------------------------------------------------------------------- /src/def_visitor.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vici37/cr-source-typer/HEAD/src/def_visitor.cr -------------------------------------------------------------------------------- /src/ext/crystal_config.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vici37/cr-source-typer/HEAD/src/ext/crystal_config.cr -------------------------------------------------------------------------------- /src/requires.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vici37/cr-source-typer/HEAD/src/requires.cr -------------------------------------------------------------------------------- /src/signature.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vici37/cr-source-typer/HEAD/src/signature.cr -------------------------------------------------------------------------------- /src/source_type_formatter.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vici37/cr-source-typer/HEAD/src/source_type_formatter.cr -------------------------------------------------------------------------------- /src/source_typer.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vici37/cr-source-typer/HEAD/src/source_typer.cr --------------------------------------------------------------------------------