App-csv2sqlite

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

      },
      "test" : {
         "requires" : {
            "Exporter" : "0",
            "ExtUtils::MakeMaker" : "0",
            "File::Find" : "0",
            "File::Spec::Functions" : "0",
            "File::Temp" : "0.19",
            "List::Util" : "0",
            "Test::More" : "0.96",
            "Try::Tiny" : "0.09",
            "utf8" : "0"
         }
      }
   },
   "provides" : {
      "App::csv2sqlite" : {
         "file" : "lib/App/csv2sqlite.pm",
         "version" : "0.004"
      }
   },

META.yml  view on Meta::CPAN

author:
  - 'Randy Stauner <rwstauner@cpan.org>'
build_requires:
  Exporter: 0
  ExtUtils::MakeMaker: 0
  File::Find: 0
  File::Spec::Functions: 0
  File::Temp: 0.19
  List::Util: 0
  Test::More: 0.96
  Try::Tiny: 0.09
  utf8: 0
configure_requires:
  ExtUtils::MakeMaker: 6.30
dynamic_config: 0
generated_by: 'Dist::Zilla version 4.300029, CPAN::Meta::Converter version 2.120921'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4
name: App-csv2sqlite

Makefile.PL  view on Meta::CPAN

  "ABSTRACT" => "Import CSV files into a SQLite database",
  "AUTHOR" => "Randy Stauner <rwstauner\@cpan.org>",
  "BUILD_REQUIRES" => {
    "Exporter" => 0,
    "ExtUtils::MakeMaker" => 0,
    "File::Find" => 0,
    "File::Spec::Functions" => 0,
    "File::Temp" => "0.19",
    "List::Util" => 0,
    "Test::More" => "0.96",
    "Try::Tiny" => "0.09",
    "utf8" => 0
  },
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => "6.30"
  },
  "DISTNAME" => "App-csv2sqlite",
  "EXE_FILES" => [
    "bin/csv2sqlite"
  ],
  "LICENSE" => "perl",

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

  File::Spec::Functions
  File::Temp
  Getopt::Long
  List::Util
  Moo
  Pod::Coverage::TrustPod
  Test::CPAN::Meta
  Test::More
  Test::Pod
  Test::Pod::Coverage
  Try::Tiny
  perl
  strict
  utf8
  warnings
);

# replace modules with dynamic results from MYMETA.json if we can
# (hide CPAN::Meta from prereq scanner)
my $cpan_meta = "CPAN::Meta";
if ( -f "MYMETA.json" && eval "require $cpan_meta" ) { ## no critic

t/lib/C2STests.pm  view on Meta::CPAN

package # no_index
  C2STests;

use Test::More 0.96;
use Try::Tiny 0.09;
use File::Spec::Functions qw( catfile ); # core
use File::Temp 0.19 qw( tempdir );

use Exporter;
our @ISA = qw(Exporter);
our @EXPORT = qw(
  test_import
);

my $mod = 'App::csv2sqlite';



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