Skip to content

Commit

Permalink
Merge d1546d9 into f8dbad8
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasbn committed Jul 31, 2021
2 parents f8dbad8 + d1546d9 commit 843428f
Show file tree
Hide file tree
Showing 32 changed files with 39 additions and 5 deletions.
1 change: 1 addition & 0 deletions lib/Workflow/Action.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ package Workflow::Action;

use warnings;
use strict;
use 5.006;
use base qw( Workflow::Base );
use Log::Log4perl qw( get_logger );
use Workflow::InputField;
Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/Action/Null.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::Action::Null;

use warnings;
use strict;
use 5.006;
use base qw( Workflow::Action );

$Workflow::Action::Null::VERSION = '1.56';
Expand Down
2 changes: 2 additions & 0 deletions lib/Workflow/Base.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ package Workflow::Base;

use warnings;
use strict;
use 5.006;
use base qw( Class::Accessor );
use Log::Log4perl;

$Workflow::Base::VERSION = '1.56';

sub new {
Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/Condition.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package Workflow::Condition;
use warnings;
use strict;
use base qw( Workflow::Base );
use 5.006;
use Carp qw(croak);
use Log::Log4perl qw( get_logger );
use Workflow::Exception qw( workflow_error );
Expand Down
3 changes: 2 additions & 1 deletion lib/Workflow/Condition/CheckReturn.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
package Workflow::Condition::CheckReturn;

use strict;
use warnings;
use strict;
use 5.006;

our $VERSION = '1.56';

Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/Condition/Evaluate.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::Condition::Evaluate;

use warnings;
use strict;
use 5.006;
use base qw( Workflow::Condition );
use Log::Log4perl qw( get_logger );
use Safe;
Expand Down
3 changes: 2 additions & 1 deletion lib/Workflow/Condition/GreedyOR.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
package Workflow::Condition::GreedyOR;

use strict;
use warnings;
use strict;
use 5.006;

our $VERSION = '1.56';

Expand Down
2 changes: 2 additions & 0 deletions lib/Workflow/Condition/HasUser.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ package Workflow::Condition::HasUser;

use warnings;
use strict;
use 5.006;

use base qw( Workflow::Condition );
use Log::Log4perl qw( get_logger );

Expand Down
3 changes: 2 additions & 1 deletion lib/Workflow/Condition/LazyAND.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
package Workflow::Condition::LazyAND;

use strict;
use warnings;
use strict;
use 5.006;

our $VERSION = '1.56';

Expand Down
3 changes: 2 additions & 1 deletion lib/Workflow/Condition/LazyOR.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
package Workflow::Condition::LazyOR;

use strict;
use warnings;
use strict;
use 5.006;

our $VERSION = '1.56';

Expand Down
3 changes: 2 additions & 1 deletion lib/Workflow/Condition/Negated.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
package Workflow::Condition::Negated;

use strict;
use warnings;
use strict;
use 5.006;

our $VERSION = '1.56';

Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/Config.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::Config;

use warnings;
use strict;
use 5.006;
use base qw( Class::Factory );
use Data::Dumper qw( Dumper );
use Log::Log4perl qw( get_logger );
Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/Config/Perl.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::Config::Perl;

use warnings;
use strict;
use 5.006;
use base qw( Workflow::Config );
use Log::Log4perl qw( get_logger );
use Workflow::Exception qw( configuration_error );
Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/Config/XML.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::Config::XML;

use warnings;
use strict;
use 5.006;
use base qw( Workflow::Config );
use Log::Log4perl qw( get_logger );
use Workflow::Exception qw( configuration_error );
Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/Context.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::Context;

use warnings;
use strict;
use 5.006;
use base qw( Workflow::Base );

$Workflow::Context::VERSION = '1.56';
Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/Exception.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::Exception;

use warnings;
use strict;
use 5.006;

# Declare some of our exceptions...

Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/Factory.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::Factory;

use warnings;
use strict;
use 5.006;
use base qw( Workflow::Base );
use DateTime;
use Log::Log4perl qw( get_logger );
Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/History.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::History;

use warnings;
use strict;
use 5.006;
use base qw( Class::Accessor );
use DateTime;

Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/InputField.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::InputField;

use warnings;
use strict;
use 5.006;
use base qw( Class::Accessor );
use Log::Log4perl qw( get_logger );
use Module::Runtime qw( require_module );
Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/Persister.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::Persister;

use warnings;
use strict;
use 5.013002;
use base qw( Workflow::Base );
use Log::Log4perl qw( get_logger );
use Workflow::Exception qw( persist_error );
Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/Persister/DBI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::Persister::DBI;

use warnings;
use strict;
use 5.006;
use base qw( Workflow::Persister );
use DateTime;
use DateTime::Format::Strptime;
Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/Persister/DBI/AutoGeneratedId.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::Persister::DBI::AutoGeneratedId;

use warnings;
use strict;
use 5.006;
use base qw( Class::Accessor );
use Log::Log4perl qw( get_logger );
use Workflow::Exception qw( configuration_error );
Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/Persister/DBI/ExtraData.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::Persister::DBI::ExtraData;

use warnings;
use strict;
use 5.006;
use base qw( Workflow::Persister::DBI );
use Log::Log4perl qw( get_logger );
use Workflow::Exception qw( configuration_error persist_error );
Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/Persister/DBI/SequenceId.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::Persister::DBI::SequenceId;

use warnings;
use strict;
use 5.006;
use base qw( Class::Accessor );
use DBI;
use Log::Log4perl qw( get_logger );
Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/Persister/File.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::Persister::File;

use warnings;
use strict;
use 5.006;
use base qw( Workflow::Persister );
use Data::Dumper qw( Dumper );
use English qw( -no_match_vars );
Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/Persister/RandomId.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::Persister::RandomId;

use warnings;
use strict;
use 5.006;
use base qw( Class::Accessor );

use constant DEFAULT_ID_LENGTH => 8;
Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/Persister/UUID.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::Persister::UUID;

use warnings;
use strict;
use 5.006;
use Data::UUID;

$Workflow::Persister::UUID::VERSION = '1.56';
Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/State.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::State;

use warnings;
use strict;
use 5.006;
use base qw( Workflow::Base );
use Log::Log4perl qw( get_logger );
use Workflow::Condition;
Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/Validator.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::Validator;

use warnings;
use strict;
use 5.006;
use base qw( Workflow::Base );
use Carp qw(croak);

Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/Validator/HasRequiredField.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::Validator::HasRequiredField;

use warnings;
use strict;
use 5.006;
use base qw( Workflow::Validator );
use Workflow::Exception qw( validation_error );

Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/Validator/InEnumeratedType.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::Validator::InEnumeratedType;

use warnings;
use strict;
use 5.006;
use base qw( Workflow::Validator );
use Workflow::Exception qw( configuration_error validation_error );

Expand Down
1 change: 1 addition & 0 deletions lib/Workflow/Validator/MatchesDateFormat.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package Workflow::Validator::MatchesDateFormat;

use warnings;
use strict;
use 5.006;
use base qw( Workflow::Validator );
use DateTime::Format::Strptime;
use Workflow::Exception qw( configuration_error validation_error );
Expand Down

0 comments on commit 843428f

Please sign in to comment.