Skip to content
Snippets Groups Projects
Commit 5096ae84 authored by Anton Soldatov's avatar Anton Soldatov
Browse files

* A short README added

* Minor changes in the perlcritic test
parent a73b6570
No related branches found
No related tags found
No related merge requests found
README 0 → 100644
WebService::Redmine
This is a Perl binding to Redmine REST API (http://www.redmine.org/projects/redmine/wiki/Rest_api).
This is the part of the redminer project (https://github.com/igelhaus/redminer).
For more details, please see README.md file or POD documentation shipped with the module.
INSTALLATION
$ perl Makefile.PL
$ make
$ make test
$ make install
# BEGIN { BEGIN {
# if (!$ENV{REDMINER_DEVEL}) {
# require Test::More;
# Test::More::plan(skip_all => 'Development tests (REDMINER_DEVEL not set)' );
# }
# }
use strict; use strict;
use warnings; use warnings;
if (!$ENV{REDMINER_DEVEL}) {
use Test::More; require Test::More;
Test::More::plan(skip_all => 'Development tests (REDMINER_DEVEL not set)' );
}
};
eval 'use Test::Perl::Critic'; eval 'use Test::Perl::Critic';
plan skip_all => 'Test::Perl::Critic required to criticise code' if $@;
plan(skip_all => 'Test::Perl::Critic required to criticise code') if $@;
Test::Perl::Critic->import(-profile => 'xt/perlcritic.rc') if -e 'xt/perlcritic.rc'; Test::Perl::Critic->import(-profile => 'xt/perlcritic.rc') if -e 'xt/perlcritic.rc';
all_critic_ok(); all_critic_ok();
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment