rita 5.0.0.alpha.2 → 5.0.0.alpha.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +13 -8
- data/lib/lita/version.rb +1 -1
- data/rita.gemspec +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7d0abb952d371306e6f0902f02bfef3e6892de86dfbe25a5427747afcdf3dd89
|
4
|
+
data.tar.gz: c8d94bbf0e801c33c9a8c7222e7e80ee506836801d290ea84e6f9347690267b2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6013e3e2c916868fdc6d5be6325945a48d4c093aa3845bfcff974e1326bc43b97dfa41cbb41254b1d90fbfc2b1673517d2e3a98625846681f50f2208c0368d3a
|
7
|
+
data.tar.gz: 591c5ad4c46b0c483432fdb74b45a00d1660e6cb804a2ca7b6f9c83ede52d6244970bee16c3308e72e7934896e9931dece7e2c7e6b22f88820b155da4b727c94
|
data/README.md
CHANGED
@@ -1,9 +1,8 @@
|
|
1
|
-
#
|
1
|
+
# Rita
|
2
2
|
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/lita.svg)](https://rubygems.org/gems/lita)
|
4
|
-
[![Build Status](https://travis-ci.com/litaio/lita.svg?branch=main)](https://travis-ci.com/litaio/lita)
|
5
4
|
|
6
|
-
**
|
5
|
+
**Rita** is a chat bot written in [Ruby](https://www.ruby-lang.org/) with persistent storage provided by [Redis](https://redis.io/). It is a community-based, actively-maintained continuation of **Lita**, originally written by Jimmy Cuadra.
|
7
6
|
It uses a plugin system to connect to different chat services and to provide new behavior.
|
8
7
|
The plugin system uses the familiar tools of the Ruby ecosystem: [RubyGems](https://rubygems.org/) and [Bundler](https://bundler.io).
|
9
8
|
|
@@ -11,21 +10,27 @@ Automate your business and have fun with your very own robot companion.
|
|
11
10
|
|
12
11
|
## Documentation
|
13
12
|
|
14
|
-
|
13
|
+
TODO:
|
14
|
+
|
15
|
+
> Please visit [lita.io](https://www.lita.io/) for comprehensive documentation.
|
15
16
|
|
16
17
|
## Plugins
|
17
18
|
|
18
|
-
|
19
|
+
Rita aims to be backward compatible with existing Lita plugins.
|
20
|
+
|
21
|
+
TODO:
|
19
22
|
|
20
|
-
|
23
|
+
> A list of all publicly available Lita plugins is available on the [lita.io plugins page](https://www.lita.io/plugins).
|
24
|
+
>
|
25
|
+
> The plugins page automatically updates daily with information from RubyGems. See [publishing](https://docs.lita.io/plugin-authoring/#publishing) for more information.
|
21
26
|
|
22
27
|
## Contributing
|
23
28
|
|
24
|
-
See the [contribution guide](https://github.com/
|
29
|
+
See the [contribution guide](https://github.com/ritaio/rita/blob/main/CONTRIBUTING.md).
|
25
30
|
|
26
31
|
## History
|
27
32
|
|
28
|
-
For a history of releases, see the [Releases](https://github.com/
|
33
|
+
For a history of releases, see the [Releases](https://github.com/ritaio/rita/releases) page.
|
29
34
|
|
30
35
|
## License
|
31
36
|
|
data/lib/lita/version.rb
CHANGED
data/rita.gemspec
CHANGED
@@ -7,8 +7,8 @@ require "lita/version"
|
|
7
7
|
Gem::Specification.new do |spec|
|
8
8
|
spec.name = "rita"
|
9
9
|
spec.version = Lita::VERSION
|
10
|
-
spec.authors = ["
|
11
|
-
spec.email = ["
|
10
|
+
spec.authors = ["Benjamin Oakes"]
|
11
|
+
spec.email = ["hello@benjaminoakes.com"]
|
12
12
|
spec.description = "ChatOps for Ruby."
|
13
13
|
spec.summary = "ChatOps framework for Ruby. Rita is a robot companion for your chat room."
|
14
14
|
spec.homepage = "https://github.com/ritaio/rita"
|
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rita
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.0.alpha.
|
4
|
+
version: 5.0.0.alpha.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Benjamin Oakes
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
@@ -236,7 +236,7 @@ dependencies:
|
|
236
236
|
version: 0.21.2
|
237
237
|
description: ChatOps for Ruby.
|
238
238
|
email:
|
239
|
-
-
|
239
|
+
- hello@benjaminoakes.com
|
240
240
|
executables:
|
241
241
|
- lita
|
242
242
|
extensions: []
|