rita 5.0.0.alpha.2 → 5.0.0.alpha.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +13 -8
  3. data/lib/lita/version.rb +1 -1
  4. data/rita.gemspec +2 -2
  5. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 794929430473fc5c22aaf15d6224e391198e7ff1a86b4ed1470da3333f088a95
4
- data.tar.gz: 3c2224e807b35317d5f5471b24d6cdfac1fa2dc1f8019ee26f608da3541c2625
3
+ metadata.gz: 7d0abb952d371306e6f0902f02bfef3e6892de86dfbe25a5427747afcdf3dd89
4
+ data.tar.gz: c8d94bbf0e801c33c9a8c7222e7e80ee506836801d290ea84e6f9347690267b2
5
5
  SHA512:
6
- metadata.gz: a9ab511179725535882ba53c851dc12145af192ae0256ee3d295d74f259cc6610f2e6a70ace9394a4021e784b1bac6f89b53d8cf626cf47ce16a5dd9e32d2cb4
7
- data.tar.gz: 33b57d7cb945f2db328b63955173e3ad687cf1dd80a919269312979ee26aba7438f09a93308cd970dd8b98fe3e56f02c67e55c35a14837eec49eb46cc9b5ea0f
6
+ metadata.gz: 6013e3e2c916868fdc6d5be6325945a48d4c093aa3845bfcff974e1326bc43b97dfa41cbb41254b1d90fbfc2b1673517d2e3a98625846681f50f2208c0368d3a
7
+ data.tar.gz: 591c5ad4c46b0c483432fdb74b45a00d1660e6cb804a2ca7b6f9c83ede52d6244970bee16c3308e72e7934896e9931dece7e2c7e6b22f88820b155da4b727c94
data/README.md CHANGED
@@ -1,9 +1,8 @@
1
- # Lita
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
- **Lita** is a chat bot written in [Ruby](https://www.ruby-lang.org/) with persistent storage provided by [Redis](https://redis.io/).
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
- Please visit [lita.io](https://www.lita.io/) for comprehensive documentation.
13
+ TODO:
14
+
15
+ > Please visit [lita.io](https://www.lita.io/) for comprehensive documentation.
15
16
 
16
17
  ## Plugins
17
18
 
18
- A list of all publicly available Lita plugins is available on the [lita.io plugins page](https://www.lita.io/plugins).
19
+ Rita aims to be backward compatible with existing Lita plugins.
20
+
21
+ TODO:
19
22
 
20
- The plugins page automatically updates daily with information from RubyGems. See [publishing](https://docs.lita.io/plugin-authoring/#publishing) for more information.
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/litaio/lita/blob/main/CONTRIBUTING.md).
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/litaio/lita/releases) page.
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
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Lita
4
4
  # The current version of Lita.
5
- VERSION = "5.0.0.alpha.2"
5
+ VERSION = "5.0.0.alpha.4"
6
6
  end
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 = ["Jimmy Cuadra"]
11
- spec.email = ["jimmy@jimmycuadra.com"]
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.2
4
+ version: 5.0.0.alpha.4
5
5
  platform: ruby
6
6
  authors:
7
- - Jimmy Cuadra
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
- - jimmy@jimmycuadra.com
239
+ - hello@benjaminoakes.com
240
240
  executables:
241
241
  - lita
242
242
  extensions: []