App-mqtt2job

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

         "requires" : {
            "Capture::Tiny" : "0",
            "DateTime" : "0",
            "Exporter" : "0",
            "File::Temp" : "0",
            "JSON" : "0",
            "Moose" : "0",
            "MooseX::Getopt" : "0",
            "Net::MQTT::Simple" : "0",
            "Template" : "0",
            "Try::Tiny" : "0",
            "strict" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "requires" : {
            "Test::More" : "0",
            "lib" : "0"
         }
      }

META.yml  view on Meta::CPAN

requires:
  Capture::Tiny: '0'
  DateTime: '0'
  Exporter: '0'
  File::Temp: '0'
  JSON: '0'
  Moose: '0'
  MooseX::Getopt: '0'
  Net::MQTT::Simple: '0'
  Template: '0'
  Try::Tiny: '0'
  strict: '0'
  warnings: '0'
resources:
  bugtracker: https://github.com/seesee/App-mqtt2job/issues
  homepage: https://github.com/seesee/App-mqtt2job
  repository: https://github.com/seesee/App-mqtt2job.git
version: '0.03'
x_generated_by_perl: v5.38.2
x_serialization_backend: 'YAML::Tiny version 1.74'
x_spdx_expression: 'Artistic-1.0-Perl OR GPL-1.0-or-later'

Makefile.PL  view on Meta::CPAN

  "PREREQ_PM" => {
    "Capture::Tiny" => 0,
    "DateTime" => 0,
    "Exporter" => 0,
    "File::Temp" => 0,
    "JSON" => 0,
    "Moose" => 0,
    "MooseX::Getopt" => 0,
    "Net::MQTT::Simple" => 0,
    "Template" => 0,
    "Try::Tiny" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Test::More" => 0,
    "lib" => 0
  },
  "VERSION" => "0.03",
  "test" => {
    "TESTS" => "t/*.t"

Makefile.PL  view on Meta::CPAN

  "Capture::Tiny" => 0,
  "DateTime" => 0,
  "Exporter" => 0,
  "File::Temp" => 0,
  "JSON" => 0,
  "Moose" => 0,
  "MooseX::Getopt" => 0,
  "Net::MQTT::Simple" => 0,
  "Template" => 0,
  "Test::More" => 0,
  "Try::Tiny" => 0,
  "lib" => 0,
  "strict" => 0,
  "warnings" => 0
);


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

bin/mqtt2job  view on Meta::CPAN

#!/usr/bin/env perl
use strict;
use warnings;

use Net::MQTT::Simple;
use JSON;
use DateTime;
use Try::Tiny;
use File::Temp;
use Capture::Tiny ':all';

use App::mqtt2job qw/ helper_v1 ha_helper_cfg /;

package MQTT::Job::Options;

use Moose;
with 'MooseX::Getopt';



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