From: Mitch Jackson Date: Wed, 10 Apr 2019 16:58:10 +0000 (-0400) Subject: Project skeleton X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=53071f40c4e2d4be41efb018d0233b37bf1c395b;p=Business-OnlinePayment-Bambora.git Project skeleton --- 53071f40c4e2d4be41efb018d0233b37bf1c395b diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d428ed6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,18 @@ +# --- +# Build generated files # +# --- +blib/ +*.sw? +Makefile +Makefile.old +MYMETA.yml +pm_to_blib + +# --- +# OS generated files # +# --- +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e69de29 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..e69de29 diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..b9f2f3d --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,13 @@ +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Business::OnlinePayment::Bambora', + AUTHOR => 'Mitch Jackson ', + VERSION_FROM => 'lib/Business/OnlinePayment/Bambora.pm', + PREREQ_PM => {qw/ + Business::OnlinePayment 0 + /}, + TEST_REQUIRES => {qw/ + Test::More 0 + /} +); diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/lib/Business/OnlinePayment/Bambora.pm b/lib/Business/OnlinePayment/Bambora.pm new file mode 100644 index 0000000..9846803 --- /dev/null +++ b/lib/Business/OnlinePayment/Bambora.pm @@ -0,0 +1,3 @@ +package Business::OnlinePayment::Bambora 0.01; + +1;