disrb 0.1.0 → 0.1.1.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1d29cdcd9fced9e70da5f78eef10301252928fbe3758f1f7b7b65880f2f857b3
4
- data.tar.gz: 032aefe4615b5ffe4ef3e0a8589a290d0930474f061db59df73e509be0f0c882
3
+ metadata.gz: ecf60885f01f0ba754ad0a67f675413d09c33870ee4ec5e46bbb9ff84fb80d9d
4
+ data.tar.gz: 2744718f229ff9b5a789a94d50292a2113b988afb5d47f46edb71429753cea44
5
5
  SHA512:
6
- metadata.gz: b87a1b106969983b3a5233971abe74275a8eed231ab76a4c7f3ed6406465d96989741b1053de5e285aa2070e7452ec1bc45baffcc2d95237c3d715f5d99472d0
7
- data.tar.gz: f806e8b82177f037e0e43310c5e4860d738b03d6b234e80bb506610ac94a66013cf8e2b0cf02c55bf8000b8b2c1ecc398b77ee7551e0f8910906672123e2c298
6
+ metadata.gz: fd9a84148138aa689686aa061bdf0e0343b285ed8012a89ca5b282178e05a681b064eed32bf6ea5409d66ca506a4be975729602a0e2a201597d699202a6df1ca
7
+ data.tar.gz: 44e7a2d3a1c4e978d31d14f58891f4802a73f74a94d8f455a15f5a829ee8215c9ec22e33251f1b811a8ddbf0aff9bfc25115e991a56a174fbd5999d2f7f15a27
data/README.md CHANGED
@@ -1,7 +1,36 @@
1
- # discord.rb
1
+ # discord.rb indev
2
+
3
+ [Changelog](CHANGELOG.md) | [Licensed under the MIT License](LICENSE)
2
4
 
3
5
  ![CI Pipeline](https://ci.codeberg.org/api/badges/14824/status.svg)
4
6
 
5
7
  W.I.P. Discord API wrapper written in Ruby for fun.
6
8
 
7
9
  The test.rb file creates two commands "test" and "test2", that return "Hi" and "Hello World!" respectively, sets the bot's current activity to 'Watching if i work', and sets the presence to online since the program was started provided you provide the required data in `env.rb.template` and rename it to `env.rb`.
10
+
11
+ !DISCLAIMER! This is project is in development. Expect changes that might break your code at any time.
12
+
13
+ ## Roadmap
14
+ - [x] Indev release (v0.1.0)
15
+ - [x] Basic Discord API wrapper
16
+ - [x] Full guild endpoint support
17
+ - [x] Full user endpoint support
18
+ - [x] Full application command endpoint support
19
+ - [x] Logger
20
+ - [x] Basic gateway support
21
+ - [x] RubyGem building and publishing
22
+ - [ ] Alpha release (v0.2.0)
23
+ - [ ] Add support for all Discord API endpoints
24
+ - [ ] Add support for all Discord Gateway events and properly handle the connection
25
+ - [ ] Documentation (v0.1.2)
26
+ - [x] Transition to Faraday for HTTP requests (v0.1.1)
27
+ - [x] Functions where all options are optional, check if atleast one is provided (v0.1.1.1)
28
+ - [x] Prefer to use keyword arguments over positional arguments if there are more than 1 optional arguments (v0.1.1.1)
29
+ - [ ] Beta release (v0.3.0)
30
+ - [ ] Component support and builder
31
+ - [ ] Sharding support
32
+ - [ ] Rate limit handling
33
+ - [ ] Voice support
34
+ - [ ] Add parameter validation
35
+ - [ ] Stable release (v1.0.0)
36
+ - [ ] Bugfixes, consistency and improvements