Elixir Uber API Client


My colleague came up with a good idea to start a pet project we can work on together. That is how we decided to implement a web application that will provide Uber users with their payments and rides history. Application technical stack includes Elixir and Phoenix Framework.

So, meet my solution for our task: Elixir Uber Github, Hex Package for Elixir Programming language.

Elixir Uber

If you want to use it with Phoenix, just add :elixir_uber as dependency:

def deps do
  [{:elixir_uber, "~> 0.0.5"}]
end

And add :elixir_uber to applications list:

def application do
  [applications: [:elixir_uber]]
end

Additional information is available on Github repo.