commit b22a3e8237c5b482050b3437baa93b35b21a422e Author: Flaviu Tamas Date: Wed Jan 7 17:48:43 2015 -0500 Initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..3d647a25ed --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +# all executables +* +!*/ +!*.* +*.exe + +# Wildcard patterns. +*.swp +nimcache diff --git a/are.nimble b/are.nimble new file mode 100644 index 0000000000..e68994e1c9 --- /dev/null +++ b/are.nimble @@ -0,0 +1,9 @@ +[Package] +name = "are" +version = "0.1.0" +description = "Yet another PCRE library" +license = "MIT" +srcDir = "src" + +[Deps] +Requires: "nim >= 0.10.1"