0.0
No commit activity in last 3 years
No release in over 3 years
Communicate with TeamCity REST API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 4.7
>= 1.3.2
 Project Readme

lita-teamcity

Build Status Coverage Status Gem Version

Communicate with TeamCity via Chat

Installation

Add lita-teamcity to your Lita instance's Gemfile:

gem 'lita-teamcity'

Configuration

Optional attributes

  • endpoint (String) – The TeamCity URL
  • user (String) – HTTP Basic Auth username
  • password (String) – HTTP Basic Auth password

Example

Lita.configure do |config|
  config.handlers.teamcity.endpoint = 'https://ci.jetthoughts.com/app/rest'
  config.handlers.teamcity.user = 'bot'
  config.handlers.teamcity.password = 'Password'
  # ...
end