disrb 0.1.0 → 0.1.1

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: 52a6f8406c32616a61973380e5c5c27ba3bf216ac8de6f254b2ab9a2f3b0ccbb
4
+ data.tar.gz: bf346d61334a6a343bb62797b36179139f72cd28f93fe8901042db87bff5d0c7
5
5
  SHA512:
6
- metadata.gz: b87a1b106969983b3a5233971abe74275a8eed231ab76a4c7f3ed6406465d96989741b1053de5e285aa2070e7452ec1bc45baffcc2d95237c3d715f5d99472d0
7
- data.tar.gz: f806e8b82177f037e0e43310c5e4860d738b03d6b234e80bb506610ac94a66013cf8e2b0cf02c55bf8000b8b2c1ecc398b77ee7551e0f8910906672123e2c298
6
+ metadata.gz: 31d3bd127e740e64460828e335f94f9ad918af0ca4d06fbedc12a7ce20d911e693c624ac95374e0ddd6622d253ab0c58119cd87f4d3ff8197f6170d7349c1eb9
7
+ data.tar.gz: fee46629e39d8b0f1d6b48a4e828650290eb9c99b2934db308d8bc4395ebdd3fed31a0baae04043e9c02744538da977a31d037dbb99eefa5989a77708e38ed73
data/README.md CHANGED
@@ -1,7 +1,34 @@
1
- # discord.rb
1
+ # discord.rb indev
2
2
 
3
3
  ![CI Pipeline](https://ci.codeberg.org/api/badges/14824/status.svg)
4
4
 
5
5
  W.I.P. Discord API wrapper written in Ruby for fun.
6
6
 
7
7
  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`.
8
+
9
+ !DISCLAIMER! This is project is in development. Expect changes that might break your code at any time.
10
+
11
+ ## Roadmap
12
+ - [x] Indev release (v0.1.0)
13
+ - [x] Basic Discord API wrapper
14
+ - [x] Full guild endpoint support
15
+ - [x] Full user endpoint support
16
+ - [x] Full application command endpoint support
17
+ - [x] Logger
18
+ - [x] Basic gateway support
19
+ - [x] RubyGem building and publishing
20
+ - [ ] Alpha release (v0.2.0)
21
+ - [ ] Add support for all Discord API endpoints
22
+ - [ ] Add support for all Discord Gateway events and properly handle the connection
23
+ - [ ] Documentation (v0.1.2)
24
+ - [x] Transition to Faraday for HTTP requests (v0.1.1)
25
+ - [ ] Functions where all options are optional, check if atleast one is provided
26
+ - [ ] Prefer to use keyword arguments over positional arguments if there are more than 1 optional arguments
27
+ - [ ] Beta release (v0.3.0)
28
+ - [ ] Component support and builder
29
+ - [ ] Sharding support
30
+ - [ ] Rate limit handling
31
+ - [ ] Voice support
32
+ - [ ] Add parameter validation
33
+ - [ ] Stable release (v1.0.0)
34
+ - [ ] Bugfixes, consistency and improvements