VERSION = '0.002'; # VERSION:
#pod =pod
#pod
#pod =encoding utf8
#pod
#pod =for stopwords IronMQ JSON config
#pod
#pod =cut
# Dependencies
use Moose;
use IO::Iron::IronMQ::Client 0.12;
use IO::Iron
#pod =attr config
#pod
#pod IronMQ uses a JSON config file to hold the project_id and token,
#pod and other config items if necessary. By default F<iron.json>.
#pod These config items can also be wri
pplied.
#pod
#pod =cut
has config => (
is => 'ro',
isa => 'Str',
default => 'iron.json',
);
#pod =attr queue
#pod
#pod Name of the queue. Must be supplied.
#pod
#pod =cut
has queue =