From 53071f40c4e2d4be41efb018d0233b37bf1c395b Mon Sep 17 00:00:00 2001 From: Mitch Jackson Date: Wed, 10 Apr 2019 12:58:10 -0400 Subject: [PATCH] Project skeleton --- .gitignore | 18 ++++++++++++++++++ CHANGELOG.md | 0 CONTRIBUTING.md | 0 Makefile.PL | 13 +++++++++++++ README.md | 0 lib/Business/OnlinePayment/Bambora.pm | 3 +++ 6 files changed, 34 insertions(+) create mode 100644 .gitignore create mode 100644 CHANGELOG.md create mode 100644 CONTRIBUTING.md create mode 100644 Makefile.PL create mode 100644 README.md create mode 100644 lib/Business/OnlinePayment/Bambora.pm 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; -- 2.11.0