From 1120412e45cefdf6c8069279164a3be4391786f4 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Wed, 14 Nov 2012 17:56:40 -0500 Subject: [PATCH] Namespacing work by implementation language which just might be a horrible idea, but it was feeling cluttered at just two languages and I'm about to add a third... --- sylvilagus/bin/.gitkeep | 0 sylvilagus/{ => go}/.example-autoenv.env | 0 sylvilagus/{ => go}/.gitignore | 1 - sylvilagus/{ => go}/Makefile | 0 .../{ => go}/src/meatballhat.com/sylvilagus-conntest/main.go | 0 sylvilagus/python/.gitignore | 2 ++ sylvilagus/{ => python}/setup.py | 0 sylvilagus/{ => python}/sylvilagus/__init__.py | 0 .../{ => python}/sylvilagus/chapter02/hello_world_consumer.py | 0 .../{ => python}/sylvilagus/chapter02/hello_world_producer.py | 0 10 files changed, 2 insertions(+), 1 deletion(-) delete mode 100644 sylvilagus/bin/.gitkeep rename sylvilagus/{ => go}/.example-autoenv.env (100%) rename sylvilagus/{ => go}/.gitignore (69%) rename sylvilagus/{ => go}/Makefile (100%) rename sylvilagus/{ => go}/src/meatballhat.com/sylvilagus-conntest/main.go (100%) create mode 100644 sylvilagus/python/.gitignore rename sylvilagus/{ => python}/setup.py (100%) rename sylvilagus/{ => python}/sylvilagus/__init__.py (100%) rename sylvilagus/{ => python}/sylvilagus/chapter02/hello_world_consumer.py (100%) rename sylvilagus/{ => python}/sylvilagus/chapter02/hello_world_producer.py (100%) diff --git a/sylvilagus/bin/.gitkeep b/sylvilagus/bin/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/sylvilagus/.example-autoenv.env b/sylvilagus/go/.example-autoenv.env similarity index 100% rename from sylvilagus/.example-autoenv.env rename to sylvilagus/go/.example-autoenv.env diff --git a/sylvilagus/.gitignore b/sylvilagus/go/.gitignore similarity index 69% rename from sylvilagus/.gitignore rename to sylvilagus/go/.gitignore index e98fe87..af7d0c0 100644 --- a/sylvilagus/.gitignore +++ b/sylvilagus/go/.gitignore @@ -1,4 +1,3 @@ /bin/* /.env -/*.egg-info/ /src/github.com/ diff --git a/sylvilagus/Makefile b/sylvilagus/go/Makefile similarity index 100% rename from sylvilagus/Makefile rename to sylvilagus/go/Makefile diff --git a/sylvilagus/src/meatballhat.com/sylvilagus-conntest/main.go b/sylvilagus/go/src/meatballhat.com/sylvilagus-conntest/main.go similarity index 100% rename from sylvilagus/src/meatballhat.com/sylvilagus-conntest/main.go rename to sylvilagus/go/src/meatballhat.com/sylvilagus-conntest/main.go diff --git a/sylvilagus/python/.gitignore b/sylvilagus/python/.gitignore new file mode 100644 index 0000000..578aea5 --- /dev/null +++ b/sylvilagus/python/.gitignore @@ -0,0 +1,2 @@ +/.env +/*.egg-info/ diff --git a/sylvilagus/setup.py b/sylvilagus/python/setup.py similarity index 100% rename from sylvilagus/setup.py rename to sylvilagus/python/setup.py diff --git a/sylvilagus/sylvilagus/__init__.py b/sylvilagus/python/sylvilagus/__init__.py similarity index 100% rename from sylvilagus/sylvilagus/__init__.py rename to sylvilagus/python/sylvilagus/__init__.py diff --git a/sylvilagus/sylvilagus/chapter02/hello_world_consumer.py b/sylvilagus/python/sylvilagus/chapter02/hello_world_consumer.py similarity index 100% rename from sylvilagus/sylvilagus/chapter02/hello_world_consumer.py rename to sylvilagus/python/sylvilagus/chapter02/hello_world_consumer.py diff --git a/sylvilagus/sylvilagus/chapter02/hello_world_producer.py b/sylvilagus/python/sylvilagus/chapter02/hello_world_producer.py similarity index 100% rename from sylvilagus/sylvilagus/chapter02/hello_world_producer.py rename to sylvilagus/python/sylvilagus/chapter02/hello_world_producer.py