Revision 7e7d60a08be60edb116101fdd439839cdcb8f315 authored by Nathaniel Nutter on 14 March 2015, 20:57:13 UTC, committed by Nathaniel Nutter on 14 March 2015, 20:57:13 UTC
quick fix to prevent exceptions from breaking tab completion
2 parent s 74df78e + ce4f45e
Raw File
ur-define-class.pod


=pod

=head1 NAME

ur define class - Add one or more classes to the current namespace



=head1 VERSION

This document describes ur define class version 0.29.

=head1 SYNOPSIS

ur define class --extends=? [NAMES]


$ cd Acme

$ ur define class Animal Vegetable Mineral
A Acme::Animal
A Acme::Vegetable
A Acme::Mineral

$ ur define class Dog Cat Bird --extends Animal
A Acme::Dog
A Acme::Cat
A Acme::Bird



=head1 REQUIRED ARGUMENTS

=over


=item extends

The base class.  Defaults to UR::Object.

Default value 'UR::Object' if not specified


=back

=head1 OPTIONAL ARGUMENTS

=over


=item NAMES

(undocumented)


=back

=head1 DESCRIPTION:

  Add one or more classes to the current namespace



=cut

back to top