Data-TagHive

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

         }
      },
      "test" : {
         "recommends" : {
            "CPAN::Meta" : "2.120900"
         },
         "requires" : {
            "ExtUtils::MakeMaker" : "0",
            "File::Spec" : "0",
            "Sub::Exporter" : "0",
            "Test::Fatal" : "0",
            "Test::More" : "0.96",
            "Try::Tiny" : "0",
            "constant" : "0",
            "lib" : "0",
            "strict" : "0"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {

META.yml  view on Meta::CPAN

---
abstract: 'hierarchical tags with values'
author:
  - 'Ricardo Signes <cpan@semiotic.systems>'
build_requires:
  ExtUtils::MakeMaker: '0'
  File::Spec: '0'
  Sub::Exporter: '0'
  Test::Fatal: '0'
  Test::More: '0.96'
  Try::Tiny: '0'
  constant: '0'
  lib: '0'
  strict: '0'
configure_requires:
  ExtUtils::MakeMaker: '6.78'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.029, CPAN::Meta::Converter version 2.150010'
license: perl

Makefile.PL  view on Meta::CPAN

  "MIN_PERL_VERSION" => "5.012",
  "NAME" => "Data::TagHive",
  "PREREQ_PM" => {
    "Carp" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0,
    "File::Spec" => 0,
    "Sub::Exporter" => 0,
    "Test::Fatal" => 0,
    "Test::More" => "0.96",
    "Try::Tiny" => 0,
    "constant" => 0,
    "lib" => 0,
    "strict" => 0
  },
  "VERSION" => "0.005",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


my %FallbackPrereqs = (
  "Carp" => 0,
  "ExtUtils::MakeMaker" => 0,
  "File::Spec" => 0,
  "Sub::Exporter" => 0,
  "Test::Fatal" => 0,
  "Test::More" => "0.96",
  "Try::Tiny" => 0,
  "constant" => 0,
  "lib" => 0,
  "strict" => 0,
  "warnings" => 0
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {

t/00-report-prereqs.dd  view on Meta::CPAN

                                    }
                    },
       'test' => {
                   'recommends' => {
                                     'CPAN::Meta' => '2.120900'
                                   },
                   'requires' => {
                                   'ExtUtils::MakeMaker' => '0',
                                   'File::Spec' => '0',
                                   'Sub::Exporter' => '0',
                                   'Test::Fatal' => '0',
                                   'Test::More' => '0.96',
                                   'Try::Tiny' => '0',
                                   'constant' => '0',
                                   'lib' => '0',
                                   'strict' => '0'
                                 }
                 }
     };
  $x;
 }

t/bitmasked.t  view on Meta::CPAN

use 5.12.0;
use warnings;

use Test::More;
use Test::Fatal;
use Try::Tiny;

use lib 't/lib';
use Test::TagHive;

use constant {
  DIFFER       => 16,

  VALUE_TO_SET => 8,
  VALUE_EXISTS => 4,

t/delete.t  view on Meta::CPAN

use 5.12.0;
use warnings;

use Test::More;
use Test::Fatal;
use Try::Tiny;

use lib 't/lib';
use Test::TagHive;

sub _init_taghive {
  new_taghive;

  taghive->add_tag('fauxbox.type:by-seat.seats:17');
  taghive->add_tag('fauxbox.type:by-seat.aeron');

t/taghive.t  view on Meta::CPAN

use 5.12.0;
use warnings;

use Test::More;
use Test::Fatal;
use Try::Tiny;

use lib 't/lib';
use Test::TagHive;

new_taghive;

taghive->add_tag('fauxbox.type:by-seat.seats:17');

has_tag($_) for qw(



( run in 1.670 second using v1.01-cache-2.11-cpan-54e63673c56 )