mailslurp_client 8.0.12 → 8.0.17
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 +7 -1
- data/lib/mailslurp_client/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f4fef33462dfa8fcbb5e4bb93e6fd822da210f4710991a9cd64b76b007809d8d
|
4
|
+
data.tar.gz: 71c569597269d67524ff11838ca373443b6cf3ae5cc5fc0ace80bd5614f7e733
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d2b002c3fb60f5784bfd2d0185c12cfb259e53810c6c00abe663e5b4480e47bfcb854ca7d0becab6944b75fc7fb5b45f22d5f7eb56a95b360e17ae1bf534a186
|
7
|
+
data.tar.gz: d12c9b49673730b9a20dcf80f1792a409647b1c71093e975d4142d484c3f9bf34baf9db00dbdd8d65352b4421d114e1282da4b73ba6841489cdb104332fe76b8
|
data/README.md
CHANGED
@@ -17,13 +17,19 @@ This section describes how to get up and running with the Ruby client.
|
|
17
17
|
|
18
18
|
See the [examples page](https://www.mailslurp.com/examples/) for more examples and use with common frameworks such as Rails and RSpec.
|
19
19
|
|
20
|
-
See the method documentation for a [list of all functions](
|
20
|
+
See the method documentation for a [list of all functions](./docs)
|
21
21
|
:::
|
22
22
|
|
23
23
|
### Create API Key
|
24
24
|
|
25
25
|
First you'll need an API Key. [Create a free account](https://app.mailslurp.com) and copy the key from your dashboard.
|
26
26
|
|
27
|
+
### Ruby requirements
|
28
|
+
|
29
|
+
The MailSlurp client requires Ruby 2.x and the ruby-dev package. You most likely have these packages but if not:
|
30
|
+
|
31
|
+
`sudo apt-get install ruby-dev`
|
32
|
+
|
27
33
|
### Install Gem
|
28
34
|
|
29
35
|
```bash
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mailslurp_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 8.0.
|
4
|
+
version: 8.0.17
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- mailslurp
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-11-
|
11
|
+
date: 2020-11-17 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Create emails addresses in Ruby then send and receive real emails and
|
14
14
|
attachments. See https://www.mailslurp.com/docs/ruby/ for full Ruby documentation.
|