aboutsummaryrefslogtreecommitdiffstats
path: root/perl.req-from-meta
diff options
context:
space:
mode:
Diffstat (limited to 'perl.req-from-meta')
-rwxr-xr-xperl.req-from-meta7
1 files changed, 2 insertions, 5 deletions
diff --git a/perl.req-from-meta b/perl.req-from-meta
index 5b612dd..243f54f 100755
--- a/perl.req-from-meta
+++ b/perl.req-from-meta
@@ -3,8 +3,7 @@
use strict;
use warnings;
-use JSON qw{ from_json };
-use YAML qw{ Load };
+use YAML qw{ Load };
# slurp the file
my $path = shift;
@@ -13,9 +12,7 @@ my $data = do { local $/; <$fh> };
close $fh;
# parse meta - either yaml or json
-my $meta = $path =~ /\.yml$/
- ? Load( $data )
- : from_json( $data );
+my $meta = Load($data);
# dump the requires with their version
my $requires = $meta->{requires};