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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c1a0beb8d0144d659fc3dbfc1f33edb87d7fdfc771e36980b42e43c78ed4de32
4
- data.tar.gz: fefe8a73bf5e0dac39f00fa071f4dfb6e68b465cdf4c51d009483de458b646b3
3
+ metadata.gz: 48cc5170f6c0953f28e9b406efc08a9b6b772bbaf084b9d500ac4fcc531463c0
4
+ data.tar.gz: 4acd1ba0baff58bf44f3dbefd389a3f2d25b4a72b8ed6f4398ca07cdc672943f
5
5
  SHA512:
6
- metadata.gz: a0a767f10119c2a8b0904fc9ae4e1323ac336de28f5d7b2cfb37adc01bf5770f860152fcfd24677ed476a9d4e1dec77a17978a7bd62f7196d95b0e752fc30e5f
7
- data.tar.gz: 94ef92b3286e644d5e5f810968fe1c2a31a8c1a9c6dd99e24edcdacd1928c5ca519134fd231a2dda337a285966a284d63b3149e4fbf89a71d456ba4588c39c43
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 to interact with Discord's Web API.
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 by executing:
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 by
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://rubydoc.info/gems/lib_discord) for more details.
73
+ See [documentation](https://rdoc.info/gems/lib_discord) for more details.
75
74
 
76
75
  ## Getting help
77
76