Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jetthoughts/lita-teamcity
https://github.com/jetthoughts/lita-teamcity
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jetthoughts/lita-teamcity
- Owner: jetthoughts
- License: gpl-3.0
- Created: 2017-07-07T21:06:01.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-08T12:29:01.000Z (over 7 years ago)
- Last Synced: 2024-08-08T16:13:39.592Z (3 months ago)
- Language: Ruby
- Size: 21.5 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lita-teamcity
[![Build Status](https://travis-ci.org/jetthoughts/lita-teamcity.png?branch=master)](https://travis-ci.org/jetthoughts/lita-teamcity)
[![Coverage Status](https://coveralls.io/repos/jetthoughts/lita-teamcity/badge.png)](https://coveralls.io/r/jetthoughts/lita-teamcity)
[![Gem Version](https://badge.fury.io/rb/lita-teamcity.svg)](https://badge.fury.io/rb/lita-teamcity)Communicate with TeamCity via Chat
## Installation
Add lita-teamcity to your Lita instance's Gemfile:
``` ruby
gem 'lita-teamcity'
```## Configuration
### Optional attributes
* `endpoint` (String) – The TeamCity URL
* `user` (String) – HTTP Basic Auth username
* `password` (String) – HTTP Basic Auth password### Example
```ruby
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
```