1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 08:12:31 -04:00

Update to Elixir 0.14.0

This commit is contained in:
Eduardo Gurgel 2014-06-11 20:40:04 +12:00
parent b06eb27575
commit 97071dbb27
4 changed files with 5 additions and 5 deletions

View file

@ -7,7 +7,7 @@ otp_release:
install: mix deps.get
before_install:
- mkdir -p vendor/elixir
- wget -q https://github.com/elixir-lang/elixir/releases/download/v0.13.3/Precompiled.zip && unzip -qq Precompiled.zip -d vendor/elixir
- wget -q https://github.com/elixir-lang/elixir/releases/download/v0.14.0/Precompiled.zip && unzip -qq Precompiled.zip -d vendor/elixir
- export PATH="$PATH:$PWD/vendor/elixir/bin"
- export MIX_ENV=test
- mix local.hex --force

View file

@ -1,5 +1,5 @@
defmodule HTTParrot do
use Application.Behaviour
use Application
def start(_type, _args) do
dispatch = :cowboy_router.compile([

View file

@ -1,5 +1,5 @@
defmodule HTTParrot.Supervisor do
use Supervisor.Behaviour
use Supervisor
def start_link do
:supervisor.start_link({:local, __MODULE__}, __MODULE__, [])

View file

@ -5,7 +5,7 @@ defmodule Httparrot.Mixfile do
[ app: :httparrot,
version: "0.1.1",
name: "HTTParrot",
elixir: "~> 0.13.3",
elixir: "~> 0.14.0",
deps: deps ]
end
@ -20,7 +20,7 @@ defmodule Httparrot.Mixfile do
defp deps do
[ {:cowboy, github: "extend/cowboy", tag: "0.9.0"},
{:jsex, '~> 2.0'},
{:jsex, "~> 2.0"},
{:meck, github: "eproxus/meck", tag: "0.8.2", only: :test } ]
end
end