From 3222260baa6a9942cd13be3b8d2ff24ea5673cc5 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Thu, 13 Jan 2022 13:22:13 -0600 Subject: [PATCH] Initial commit following nimble init. --- .gitignore | 2 ++ namespaced_logging.nimble | 12 ++++++++++++ src/namespaced_logging.nim | 7 +++++++ src/namespaced_logging/submodule.nim | 12 ++++++++++++ tests/config.nims | 1 + tests/test1.nim | 12 ++++++++++++ 6 files changed, 46 insertions(+) create mode 100644 .gitignore create mode 100644 namespaced_logging.nimble create mode 100644 src/namespaced_logging.nim create mode 100644 src/namespaced_logging/submodule.nim create mode 100644 tests/config.nims create mode 100644 tests/test1.nim diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..27b4ec6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.*.sw? +nimcache/ diff --git a/namespaced_logging.nimble b/namespaced_logging.nimble new file mode 100644 index 0000000..0d9c484 --- /dev/null +++ b/namespaced_logging.nimble @@ -0,0 +1,12 @@ +# Package + +version = "0.1.0" +author = "Jonathan Bernard" +description = "Wrapper around std/logging to provide namespaced logging." +license = "MIT" +srcDir = "src" + + +# Dependencies + +requires "nim >= 1.6.2" diff --git a/src/namespaced_logging.nim b/src/namespaced_logging.nim new file mode 100644 index 0000000..4b2a270 --- /dev/null +++ b/src/namespaced_logging.nim @@ -0,0 +1,7 @@ +# This is just an example to get you started. A typical library package +# exports the main API in this file. Note that you cannot rename this file +# but you can remove it if you wish. + +proc add*(x, y: int): int = + ## Adds two files together. + return x + y diff --git a/src/namespaced_logging/submodule.nim b/src/namespaced_logging/submodule.nim new file mode 100644 index 0000000..de1756a --- /dev/null +++ b/src/namespaced_logging/submodule.nim @@ -0,0 +1,12 @@ +# This is just an example to get you started. Users of your library will +# import this file by writing ``import namespaced_logging/submodule``. Feel free to rename or +# remove this file altogether. You may create additional modules alongside +# this file as required. + +type + Submodule* = object + name*: string + +proc initSubmodule*(): Submodule = + ## Initialises a new ``Submodule`` object. + Submodule(name: "Anonymous") diff --git a/tests/config.nims b/tests/config.nims new file mode 100644 index 0000000..3bb69f8 --- /dev/null +++ b/tests/config.nims @@ -0,0 +1 @@ +switch("path", "$projectDir/../src") \ No newline at end of file diff --git a/tests/test1.nim b/tests/test1.nim new file mode 100644 index 0000000..63cf8dd --- /dev/null +++ b/tests/test1.nim @@ -0,0 +1,12 @@ +# This is just an example to get you started. You may wish to put all of your +# tests into a single file, or separate them into multiple `test1`, `test2` +# etc. files (better names are recommended, just make sure the name starts with +# the letter 't'). +# +# To run these tests, simply execute `nimble test`. + +import unittest + +import namespaced_logging +test "can add": + check add(5, 5) == 10