C<spvmdeps> command is a class dependencies analyzer.
=head1 Usage
Usage: spvmdeps [OPTIONS] SCRIPT_NAME
spvmdeps myapp.spvm
spvmdeps --with-version myapp.spvm
spvmdeps --cpanm --with-version myapp.spvm
spvmdeps --cpanfile --with-version myapp.spvm
Options:
-h, --help Shows this message
-v, --version Shows the version
-I, --include-dir DIRECTORY Adds a include directory
--json Prints JSON that contains all dependent class information.
--cpanm Prints cpanm commands that contains dependent cpan modules
--cpanfile Prints cpanfile that contains dependent cpan modules
--with-version Output(default, --cpanm, --json) contains version information.
--exclude CLASS_NAME Excludes a class name. This option can be used repeatedly.
--resource-info Shows config files of dependent resources
=head1 Details
spvmdeps [OPTIONS] SCRIPT_NAME
The C<spvmdeps> command prints class dependency information.
Output Examples:
Sys
Regex
Foo
Bar
# --with-version
Sys 1.201
Regex 0.980
Foo (version_from Sys)
Bar
I<OPTIONS> are L<options|/"Options">.
I<SCRIPT_NAME> is a script name that contains a L<bootstrap method|SPVM::Document::Language::Class/"Bootstrap Method"> in an L<anon class|SPVM::Document::Language::Class/"Anon Class">.
class {
static method main : void () {
}
}
See L<Class Search Directories|SPVM::Document::Language::Class/"Class Search Directories"> about defaultclass search directories.
See L<SPVM::Document::EnvironmentVariables> about available environment variables.
=head1 Options
=head2 --help
Outputs how to usethe C<spvmdeps> command to standard output.
=head2 -h
-h
Same as L</"--help">.
=head2 --version
Outputs the version of the C<spvmdeps> command to standard output. This version is the same as the version of L<SPVM>.
=head2 -v
-v
Same as L</"--version">.
=head2 --include-dir
--include-dir DIRECTORY
Prepends I<DIRECTORY> to L<class search directories|SPVM::Document::Language::Class/"Class Search Directories">
This option can be specified multiple times.
--include-dir dir1 --include-dir dir2
In this case, class search directories becomes the following.
[dir1, dir2, default_dirs]
=head2 -I
-I DIRECTORY
Same as L</"--include-dir">.
=head2 --json
--json
Prints JSON that contains all dependent class information.
Prints cpanm commands that contains dependent CPAN modules. Classes its version is specified are treated as dependent CPAN modules.
Output Examples:
cpanm SPVM
cpanm SPVM::Sys
cpanm SPVM::Regex
# --with-version
cpanm SPVM@1.001
cpanm SPVM::Sys@1.201
cpanm SPVM::Regex@0.980
=head2 --cpanfile
--cpanfile
Prints cpanfile that contains dependent CPAN modules. Classes its version is specified are treated as dependent CPAN modules.
Output Examples:
requires 'SPVM';
requires 'SPVM::Sys';
requires 'SPVM::Regex';
# --with-version
requires 'SPVM', '== 1.001';
requires 'SPVM::Sys', '== 1.201';
requires 'SPVM::Regex', '== 0.980';
=head2 --with-version
--with-version
Output(default, L</"--cpanm">, L</"--cpanfile">, L</"--json">) contains version information.
=head2 --exclude
--exclude=<class_name>
Excludes a class name. This option can be used repeatedly.
Examples:
--exclude TestCase::Foo
Wildcard C<*> can be used.
--exclude TestCase::*
=head2 --resource-info
--resource-info
Shows all config files loading resources.
=head1 lib Directive
If the source code specified by I<SCRIPT_NAME> contains lib directives, The directories specified by lib directive is prepeneded to L<class search directories|SPVM::Document::Language::Class/"Class Search Directories">.
#lib "$FindBin::Bin/lib"
class {
}
This directories specified by lib directive is placed afterthe directories specified by L</"--include-dir"> option.
=head1 Copyright & License
Copyright 2023 Yuki Kimoto. All Rights Reserved.
MIT License.
Keyboard Shortcuts
Global
s
Focus search bar
?
Bring up this help dialog
GitHub
gp
Go to pull requests
gi
go to github issues (only if github is preferred repository)