elixir-web / weber

[WiP] Web framework for Elixir inspired by Rails [#WeberMVC at freenode]
http://elixir-web.github.io/weber/
MIT License
370 stars 33 forks source link

Fix dependency error on latest plug package #207

Closed teodor-pripoae closed 10 years ago

teodor-pripoae commented 10 years ago

Hi,

I'm getting a dependency error with latest weber source code.

Unchecked dependencies for environment dev:
* cowboy (git://github.com/extend/cowboy.git)
  the dependency cowboy in deps/weber/mix.exs is overriding a child dependency:

  > In deps/weber/mix.exs:
    {:cowboy, nil, [git: "git://github.com/extend/cowboy.git"]}

  > In deps/plug/mix.exs:
    {:cowboy, nil, [hex_app: :cowboy, optional: true]}

  Ensure they match or specify one of the above in your MusicService.Mixfile deps and set `override: true`
** (Mix) Can't continue due to errors on dependencies

This patch fixes it.

rcdilorenzo commented 10 years ago

Excellent! Thank you.