https://github.com/jetthoughts/lita-teamcity
https://github.com/jetthoughts/lita-teamcity
Last synced: 3 months 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 (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-08T12:29:01.000Z (almost 8 years ago)
- Last Synced: 2025-04-13T14:04:15.938Z (3 months ago)
- Language: Ruby
- Size: 21.5 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lita-teamcity
[](https://travis-ci.org/jetthoughts/lita-teamcity)
[](https://coveralls.io/r/jetthoughts/lita-teamcity)
[](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
```