Tentabucket

Build StatusCoverage Status

Simple Bitbucket API client library for Elixir


Installation

If available in Hex, the package can be installed as:

  1. Add tentabucket to your list of dependencies in mix.exs:

    def deps do

     [{:tentabucket, "~> 0.0.1"}]

    end

  2. Ensure tentabucket is started before your application:

    def application do

     [applications: [:tentabucket]]

    end

Bitbucket API coverage

Examples

Fetching dependencies and running on elixir console:

mix deps.get
iex -S mix
iex> Tentabucket.Repositories.list_account "duksis"

Contributing

Start by forking this repo

Then run this command to fetch dependencies and run tests:

MIX_ENV=test mix do deps.get, test

Pull requests are greatly appreciated