add missing Class::Method::Modifiers dependency (RT#80310)
[gitmo/Role-Tiny.git] / Makefile.PL
index e5a5818..af4d5be 100644 (file)
@@ -16,6 +16,7 @@ WriteMakefile(
   NAME => 'Role::Tiny',
   VERSION_FROM => 'lib/Role/Tiny.pm',
   PREREQ_PM => {
+    'Class::Method::Modifiers' => '1.10',
     ($] >= 5.010 ? () : ('MRO::Compat' => 0)),
     ($mymeta_works ? () : (%BUILD_DEPS)),
   },
@@ -28,4 +29,9 @@ WriteMakefile(
     },
   },
 
+  META_MERGE => {
+    no_index => {
+      directory => [ 'xt' ]
+    }
+  },
 );