sasa1977 / exactor

Helpers for simpler implementation of GenServer based processes
MIT License
683 stars 23 forks source link

Can't build docs for project what uses exactor #6

Closed smpallen99 closed 10 years ago

smpallen99 commented 10 years ago

My project uses exactor. When I do mix docs, the command returns without an error. No documentation is created. mix help does not show mix docs as an option.

If I comment out the contexts of file project_root/deps/exactor/lib/mix/tasks/docs.ex I can build the docs for my project.

Here is the contexts of my mix.exs file:

defmodule DocTest.Mixfile do use Mix.Project

def project do [app: :doc_test, version: "0.0.1", elixir: "~> 0.13.1", deps: deps] end def application do [ applications: [], mod: {DocTest, []} ] end defp deps do [ {:exactor, "~>0.3.2"}, { :ex_doc, github: "elixir-lang/ex_doc" } ] end end

sasa1977 commented 10 years ago

Thank you for pointing this out. I've pushed version 0.3.3 with the fix to hex. Let me know if you have some more problems.