0.0
Repository is archived
No release in over 3 years
Low commit activity in last 3 years
Detect Favro cards in PRs
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
~> 0.8.21
~> 2.14
~> 3.1.5
>= 0
~> 12.3.0
~> 3.4
~> 0.52.1
~> 3.2.1
~> 0.9.12

Runtime

 Project Readme

Warning This repository is no longer maintained


danger-favro

Build Status Coveralls Gem

A Danger plugin that detect Favro cards referenced in code or PR title and displays basic information about them.

Example

Example

Usage

Initiate the check
favro.check(
  user_name: "api-user",
  api_token: "api-token",
  organization_id: "org-id",
  key: "Test"
)
Environment variables can also be used.
ENV["DANGER_FAVRO_USER_NAME"] = "api-user"
ENV["DANGER_FAVRO_API_TOKEN"] = "api-token"
ENV["DANGER_FAVRO_ORGANIZATION_ID"] = "org-id"

favro.check(key: "Test")

Methods

check - Check for cards.

Development

  1. Clone this repo
  2. Run bundle install to setup dependencies.
  3. Run bundle exec rake spec to run the tests.
  4. Use bundle exec guard to automatically have tests run as you make changes.
  5. Make your changes.