App-RPi-EnvUI

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Async::Event::Interval" : "0.05",
            "Crypt::SaltedHash" : "0",
            "DBD::SQLite" : "0",
            "DBI" : "0",
            "Dancer2" : "0.203001",
            "Dancer2::Plugin::Auth::Extensible" : "0",
            "Dancer2::Plugin::Auth::Extensible::Provider::Base" : "0",
            "Dancer2::Session::JSON" : "0",
            "DateTime" : "0",
            "Digest::SHA1" : "0",
            "JSON::XS" : "0",
            "Logging::Simple" : "1.01",
            "Mock::Sub" : "1.07",
            "Plack::Test" : "0",
            "RPi::Const" : "1.02",
            "RPi::DHT11" : "1.01",
            "Test::More" : "0",
            "WiringPi::API" : "1.04"
         }
      }
   },

META.yml  view on Meta::CPAN

  Async::Event::Interval: '0.05'
  Crypt::SaltedHash: '0'
  DBD::SQLite: '0'
  DBI: '0'
  Dancer2: '0.203001'
  Dancer2::Plugin::Auth::Extensible: '0'
  Dancer2::Plugin::Auth::Extensible::Provider::Base: '0'
  Dancer2::Session::JSON: '0'
  DateTime: '0'
  Digest::SHA1: '0'
  JSON::XS: '0'
  Logging::Simple: '1.01'
  Mock::Sub: '1.07'
  Plack::Test: '0'
  RPi::Const: '1.02'
  RPi::DHT11: '1.01'
  Test::More: '0'
  WiringPi::API: '1.04'
resources:
  bugtracker: https://github.com/stevieb9/app-rpi-envui/issues
  repository: https://github.com/stevieb9/app-rpi-envui.git

Makefile.PL  view on Meta::CPAN

        'Async::Event::Interval' => 0.05,
        'Crypt::SaltedHash' => 0,
        'Dancer2'     => 0.203001,
        'Dancer2::Plugin::Auth::Extensible' => 0,
        'Dancer2::Plugin::Auth::Extensible::Provider::Base' => 0,
        'Dancer2::Session::JSON' => 0,
        'DateTime'  => 0,
        'DBI' => 0,
        'DBD::SQLite' => 0,
        'Digest::SHA1' => 0,
        'JSON::XS' => 0,
        'Logging::Simple' => '1.01',
        'Mock::Sub' => '1.07',
        'Plack::Test' => 0,
        'RPi::DHT11' => '1.01',
        'RPi::Const' => '1.02',
        'Test::More' => 0,
        'WiringPi::API' => '1.04',
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'wui-*' },

lib/App/RPi/EnvUI/API.pm  view on Meta::CPAN

package App::RPi::EnvUI::API;

use strict;
use warnings;
use App::RPi::EnvUI::DB;
use App::RPi::EnvUI::Event;
use Carp qw(confess);
use Crypt::SaltedHash;
use Data::Dumper;
use DateTime;
use JSON::XS;
use Logging::Simple;
use Mock::Sub no_warnings => 1;
use RPi::Const qw(:all);

our $VERSION = '0.30';

# configure handlers

BEGIN {
    if ($ENV{SUPPRESS_WARN}){

t/205-route_light.t  view on Meta::CPAN

use strict;
use warnings;

use Data::Dumper;
use JSON::XS;
use Test::More;

BEGIN {
    use lib 't/';
    use TestBase;
    config();
    set_testing();
    db_create();
}

t/215-route_get_aux.t  view on Meta::CPAN

use strict;
use warnings;

use Data::Dumper;
use JSON::XS;
use Test::More;

BEGIN {
    use lib 't/';
    use TestBase;
    config();
    set_testing();
    db_create();
}

t/220-route_fetch_env.t  view on Meta::CPAN

use strict;
use warnings;

use Data::Dumper;
use JSON::XS;
use Test::More;

BEGIN {
    use lib 't/';
    use TestBase;
    config();
    set_testing();
    db_create();
}

t/225-route_set_aux.t  view on Meta::CPAN

use strict;
use warnings;

use Data::Dumper;
use JSON::XS;
use Test::More;

BEGIN {
    use lib 't/';
    use TestBase;
    config();
    set_testing();
    db_create();
}

t/226-route_set_aux_override.t  view on Meta::CPAN

use strict;
use warnings;

use Data::Dumper;
use JSON::XS;
use Test::More;

BEGIN {
    use lib 't/';
    use TestBase;
    config();
    set_testing();
    db_create();
}



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