lib_discord 1.0.0 → 1.1.0
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 +4 -4
- data/README.md +4 -5
- data/lib/lib_discord/client.rb +2013 -759
- data/lib/lib_discord/maps.rb +0 -1
- data/lib/lib_discord/permissions.rb +1 -2
- data/lib/lib_discord/urls.rb +7 -4
- data/lib/lib_discord/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 48cc5170f6c0953f28e9b406efc08a9b6b772bbaf084b9d500ac4fcc531463c0
|
4
|
+
data.tar.gz: 4acd1ba0baff58bf44f3dbefd389a3f2d25b4a72b8ed6f4398ca07cdc672943f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca966527a4b4d0f21af1b43a3023cee63a4e39672ea4da5724f78ff7e0e8963a313f44d78b7c4408cb82b7486a7efdca8ab0851bf2215fa11843e366e65fd91e
|
7
|
+
data.tar.gz: 59faf7da3329e70f6d5715801968d4a0b62ef704f76929abb1da7b6ee24d8a6f9d84aa7b86071852c9a5e73c1a92754765b9a0f0defb92c552885571f8653484
|
data/README.md
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
[mailing lists]: https://sr.ht/~komidore64/lib_discord/lists
|
6
6
|
[bug tracker]: https://todo.sr.ht/~komidore64/lib_discord
|
7
7
|
|
8
|
-
Straightforward Ruby-bindings
|
8
|
+
Straightforward Ruby-bindings for Discord's Web API
|
9
9
|
|
10
10
|
[project] -- [sources] -- [mailing lists] -- [bug tracker]
|
11
11
|
|
@@ -18,14 +18,13 @@ Straightforward Ruby-bindings to interact with Discord's Web API.
|
|
18
18
|
`lib_discord` requires an installed [Ruby runtime](https://www.ruby-lang.org/)
|
19
19
|
`>= 3.3`.
|
20
20
|
|
21
|
-
Install the gem and add it to your application's Gemfile
|
21
|
+
Install the gem and add it to your application's Gemfile:
|
22
22
|
|
23
23
|
```sh
|
24
24
|
bundle add lib_discord
|
25
25
|
```
|
26
26
|
|
27
|
-
If bundler is not being used to manage dependencies, install the gem
|
28
|
-
executing:
|
27
|
+
If bundler is not being used to manage dependencies, install the gem with:
|
29
28
|
|
30
29
|
```sh
|
31
30
|
gem install lib_discord
|
@@ -71,7 +70,7 @@ fmt = LibDiscord.formatter
|
|
71
70
|
fmt.user(12345678) # => "<@12345678>"
|
72
71
|
```
|
73
72
|
|
74
|
-
See [documentation](https://
|
73
|
+
See [documentation](https://rdoc.info/gems/lib_discord) for more details.
|
75
74
|
|
76
75
|
## Getting help
|
77
76
|
|