summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore18
-rw-r--r--CHANGELOG.md0
-rw-r--r--CONTRIBUTING.md0
-rw-r--r--Makefile.PL13
-rw-r--r--README.md0
-rw-r--r--lib/Business/OnlinePayment/Bambora.pm3
6 files changed, 34 insertions, 0 deletions
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
--- /dev/null
+++ b/CHANGELOG.md
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/CONTRIBUTING.md
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 <mitch@freeside.biz>',
+ 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
--- /dev/null
+++ b/README.md
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;