App-TimeTracker-Command-Jira

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

         }
      },
      "runtime" : {
         "requires" : {
            "App::TimeTracker::Utils" : "0",
            "Data::Dumper" : "0",
            "JIRA::REST" : "0",
            "JSON::XS" : "0",
            "Moose::Role" : "0",
            "Path::Class" : "0",
            "Try::Tiny" : "0",
            "Unicode::Normalize" : "0",
            "perl" : "5.010",
            "strict" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "requires" : {
            "Scalar::Util" : "0",
            "Test::More" : "0.94",

META.yml  view on Meta::CPAN

  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: App-TimeTracker-Command-Jira
requires:
  App::TimeTracker::Utils: '0'
  Data::Dumper: '0'
  JIRA::REST: '0'
  JSON::XS: '0'
  Moose::Role: '0'
  Path::Class: '0'
  Try::Tiny: '0'
  Unicode::Normalize: '0'
  perl: '5.010'
  strict: '0'
  warnings: '0'
resources:
  bugtracker: https://github.com/pepl/app-timetracker-command-jira/issues
  repository: git://github.com/pepl/app-timetracker-command-jira.git
version: '0.8'
x_generated_by_perl: v5.28.1
x_serialization_backend: 'YAML::Tiny version 1.66'

Makefile.PL  view on Meta::CPAN

  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.010",
  "NAME" => "App::TimeTracker::Command::Jira",
  "PREREQ_PM" => {
    "App::TimeTracker::Utils" => 0,
    "Data::Dumper" => 0,
    "JIRA::REST" => 0,
    "JSON::XS" => 0,
    "Moose::Role" => 0,
    "Path::Class" => 0,
    "Try::Tiny" => 0,
    "Unicode::Normalize" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Scalar::Util" => 0,
    "Test::More" => "0.94",
    "lib" => 0
  },
  "VERSION" => "0.8",

Makefile.PL  view on Meta::CPAN


my %FallbackPrereqs = (
  "App::TimeTracker::Utils" => 0,
  "Data::Dumper" => 0,
  "JIRA::REST" => 0,
  "JSON::XS" => 0,
  "Moose::Role" => 0,
  "Path::Class" => 0,
  "Scalar::Util" => 0,
  "Test::More" => "0.94",
  "Try::Tiny" => 0,
  "Unicode::Normalize" => 0,
  "lib" => 0,
  "strict" => 0,
  "warnings" => 0
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};

lib/App/TimeTracker/Command/Jira.pm  view on Meta::CPAN


# ABSTRACT: App::TimeTracker Jira plugin
use App::TimeTracker::Utils qw(error_message warning_message);

our $VERSION = '0.8';

use Moose::Role;
use JIRA::REST ();
use JSON::XS qw(encode_json decode_json);
use Path::Class;
use Try::Tiny;
use Unicode::Normalize ();

has 'jira_client' => (
    is         => 'ro',
    isa        => 'Maybe[JIRA::REST]',
    lazy_build => 1,
    traits     => ['NoGetopt'],
    predicate  => 'has_jira_client'
);
has 'jira_ticket' => (



( run in 0.272 second using v1.01-cache-2.11-cpan-05444aca049 )