Popularity
2.8
Declining
Activity
0.0
Stable
6
3
7

Monthly Downloads: 2
Programming language: Elixir
License: MIT License
Tags: Third Party APIs    

exjira alternatives and similar packages

Based on the "Third Party APIs" category.
Alternatively, view exjira alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of exjira or a related project?

Add another 'Third Party APIs' Package

README

ExJira

A JIRA client library for Elixir using erlang-oauth to call the JIRA REST API.

A non-trivial project to help me get started using Elixir - Currently WIP.

Usage

1. Add dependencies

Add the following to the deps section in mix.exs.

defp deps do
  [
    {:oauth, github: "tim/erlang-oauth"},
    {:extwitter, "~> 0.1"}
  ]
end

2. Setup OAuth parameters

Use ExJira.configure to setup the JIRA OAuth parameters. See the Configuration section below for further details.

3. Access JIRA endpoints

Call the functions in the ExJira module (e.g. ExJira.projects to return all projects or ExJira.project("KEY") to return a specifc one).

Configuration

There are three ways to configure ExJira:

Using config.exs

In config/config.exs add the following:

config :ex_jira, [
  site: "http://youraccount.atlassian.net",
  private_key_file: "private_key.pem"
  consumer_key: ""
]

Across the application at runtime

ExJira.configure([consumer_key: "", ...])

For the current process at runtime

ExJira.configure(:process, [consumer_key: "", ...])