Wrap the rest of the object modules in elixir

This commit is contained in:
Carlos Martín Nieto
2013-06-06 11:14:57 +02:00
parent f82f47c025
commit 267353ea21
8 changed files with 76 additions and 15 deletions

15
lib/geef.ex Normal file
View File

@@ -0,0 +1,15 @@
defmodule Geef do
defmacro __using__(_) do
quote do
alias Geef.Repository
alias Geef.Reference
alias Geef.Object
alias Geef.Commit
alias Geef.Tree
alias Geef.Blob
alias Geef.Tag
end
end
end